Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Artlytical Media
Marthas Vineyard Museum Frontity
Commits
11d18d88
Commit
11d18d88
authored
Jan 21, 2021
by
David Rhoderick
Browse files
Removing unnecessary debug logs.
parent
16291efd
Changes
4
Hide whitespace changes
Inline
Side-by-side
packages/mvmuseum-theme/src/components/global/footer.js
View file @
11d18d88
...
...
@@ -4,8 +4,6 @@ import {styled, connect} from 'frontity'
import
Container
from
'
./container
'
const
Footer
=
({
state
})
=>
{
console
.
log
(
'
loaded yo
'
)
return
(
<
StyledFooter
>
<
Container
>
...
...
packages/mvmuseum-theme/src/components/home/hero-slideshow.js
View file @
11d18d88
...
...
@@ -22,7 +22,6 @@ const HeroSlideshow = ({heroSlideshow, state}) => {
<
HeroContainer
>
<
Slideshow
>
{
heroSlideshow
.
map
(({
image
,
title
,
link
},
index
)
=>
{
console
.
log
(
link
)
return
(
<
div
key
=
{
index
}
>
{
/* <Parallax y={[200, -200]} styleInner={{background: state.theme.colors.white}}> */
}
<
SlideImage
image
=
{
image
.
sizes
.
large
}
activeSlide
=
{
index
===
activeSlide
}
previousSlide
=
{
index
===
activeSlide
-
1
}
/
>
...
...
packages/mvmuseum-theme/src/components/home/hours.js
View file @
11d18d88
...
...
@@ -6,7 +6,6 @@ import Container from '../global/container.js'
const
Hours
=
({
hours
,
state
,
libraries
})
=>
{
const
Html2React
=
libraries
.
html2react
.
Component
console
.
log
(
hours
)
return
(
<
HoursSection
>
<
PropertyRow
>
...
...
packages/mvmuseum-theme/src/components/home/linksContainer.js
View file @
11d18d88
...
...
@@ -5,7 +5,7 @@ import Link from "@frontity/components/link";
const
LinksContainer
=
({
quick_links
,
state
})
=>
{
const
colors
=
state
.
theme
.
colors
;
const
use_colors
=
[
colors
.
green
,
colors
.
orange
,
colors
.
blue
];
console
.
log
(
use_colors
);
return
(
<
TextContainer
>
{
quick_links
.
map
(({
link
,
description
},
index
)
=>
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment