diff --git a/public/assets/Harvest_River_Bridge.jpg b/public/assets/Harvest_River_Bridge.jpg
new file mode 100644
index 0000000..12bf561
Binary files /dev/null and b/public/assets/Harvest_River_Bridge.jpg differ
diff --git a/public/assets/about.jpg b/public/assets/about.jpg
new file mode 100644
index 0000000..8589c9c
Binary files /dev/null and b/public/assets/about.jpg differ
diff --git a/public/assets/explore.jpg b/public/assets/explore.jpg
new file mode 100644
index 0000000..30ab703
Binary files /dev/null and b/public/assets/explore.jpg differ
diff --git a/public/assets/meet.jpg b/public/assets/meet.jpg
new file mode 100644
index 0000000..5e06779
Binary files /dev/null and b/public/assets/meet.jpg differ
diff --git a/public/assets/share.jpg b/public/assets/share.jpg
new file mode 100644
index 0000000..dd8d6e8
Binary files /dev/null and b/public/assets/share.jpg differ
diff --git a/public/assets/statue-2.jpg b/public/assets/statue-2.jpg
new file mode 100644
index 0000000..ed9297a
Binary files /dev/null and b/public/assets/statue-2.jpg differ
diff --git a/public/assets/unibank.jpg b/public/assets/unibank.jpg
new file mode 100644
index 0000000..524ff8c
Binary files /dev/null and b/public/assets/unibank.jpg differ
diff --git a/src/atoms/HeaderAtoms.tsx b/src/atoms/HeaderAtoms.tsx
index 22966c2..e1068c5 100644
--- a/src/atoms/HeaderAtoms.tsx
+++ b/src/atoms/HeaderAtoms.tsx
@@ -1,6 +1,8 @@
import styled from '@emotion/styled'
+import { Link } from 'react-router-dom';
-export const Link = styled.a`
+
+export const StyledLink = styled(Link)`
display: inline-block;
text-decoration: none;
`;
@@ -27,12 +29,12 @@ export const HeaderTitle = styled.span`
export const HeaderLink = ({ href, children, color }: { href: string, children: string, color: string; }) => {
return (
- {children}
+ {children}
)
}
export const ExternalLink = ({ href, children }: { href: string, children: any }) => {
return (
- {children}
+ {children}
)
}
diff --git a/src/organisms/Header.tsx b/src/organisms/Header.tsx
index a370028..1ad2ad0 100644
--- a/src/organisms/Header.tsx
+++ b/src/organisms/Header.tsx
@@ -1,7 +1,7 @@
import styled from '@emotion/styled';
import { Theme } from '@/theme/Theme';
-import { HeaderLink, HeaderTitle, Link } from '@/atoms/HeaderAtoms';
+import { HeaderLink, HeaderTitle, StyledLink } from '@/atoms/HeaderAtoms';
import { MattapanMappingLogo, LogoContainer } from '@/atoms/Logos';
const HeaderContainer = styled.div`
@@ -15,9 +15,9 @@ const Header: React.FC<{className?: string}> = function HeaderComponent({classNa
return (
-
+
- Mattapan Boston
+ Mattapan Boston
AboutExplore
diff --git a/src/organisms/LandingGrid.tsx b/src/organisms/LandingGrid.tsx
index 498cd79..eed1ab7 100644
--- a/src/organisms/LandingGrid.tsx
+++ b/src/organisms/LandingGrid.tsx
@@ -1,5 +1,6 @@
import styled from '@emotion/styled';
import { Theme } from '@/theme/Theme';
+import { StyledLink } from '@/atoms/HeaderAtoms';
const LandingGridContainer = styled.div`
display: grid;
@@ -88,15 +89,21 @@ const LandingCard = ( { children, color, src, title } : { children: string; colo
)
}
+const LandingCardLink = ({ href, color, src, title, children }: { href: string; color: string; src: string; title: string; children: string; }) => {
+ return (
+
+ )
+}
+
export const LandingGrid = () => {
return (
- More info on About
- More info on Explore
- Meet
- More info on Share
- More info on Get Involved
- More info on Contact Us?
+ More info on About
+ More info on Explore
+ Meet
+ More info on Share
+ More info on Get Involved
+ More info on Contact Us?
)
}