Skip to content

Commit

Permalink
fix: changes to title and footer copy
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaburgio committed Feb 20, 2024
1 parent 04bf495 commit 235f6ed
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
4 changes: 3 additions & 1 deletion iconoir.com/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ export interface FooterCategoryProps {
links: { name: string; url: string }[];
}

const year = new Date().getFullYear();

function FooterCategory({ category, links }: FooterCategoryProps) {
return (
<FooterCategoryContainer>
Expand Down Expand Up @@ -84,7 +86,7 @@ export function Footer() {
</FooterCategories>
<FooterEnd>
<Text13 style={{ fontWeight: 400 }}>
Parts of this content are &copy;2020-2023 by individual Iconoir
Parts of this content are &copy;2020-{year} by individual Iconoir
contributors. Content available under a{' '}
<a href={LICENSE_LINK} target={'_blank'} rel={'nofollow noreferrer'}>
MIT License
Expand Down
13 changes: 7 additions & 6 deletions iconoir.com/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,15 @@ const Home: NextPage<HomeProps> = ({
<HeaderBackground>
<HeroHead>
<HeroText>Say hello</HeroText>
<HeroTextSecondary>to your new icon library.</HeroTextSecondary>
<HeroTextSecondary>
to your new free icon library.
</HeroTextSecondary>
</HeroHead>
</HeaderBackground>
<HeroDescription>
A high-quality selection of free icons. No premium options or
sign-ups. Your new alternative to Noun Project, Flaticon, and all
Figma resources. Available in SVG, Font, React, React Native, Flutter,
Figma and Framer.
A high-quality selection of free icons. Your new alternative to Noun
Project, Flaticon, and all Figma resources. Available in SVG, Font,
React, React Native, Flutter, Figma and Framer.
</HeroDescription>
<StatsContainer>
<Stat
Expand Down Expand Up @@ -174,7 +175,7 @@ export const HeroText = styled.h1`
`;
export const HeroTextSecondary = styled(HeroText)`
color: var(--g4);
max-width: 1000px;
max-width: 1140px;
`;
export const HeroDescription = styled(Text18)<{ topMargin?: number }>`
display: block;
Expand Down

0 comments on commit 235f6ed

Please sign in to comment.