fix: changes to title and footer copy

This commit is contained in:
Luca Burgio 2024-02-20 14:03:37 +01:00
parent 04bf4952a7
commit 235f6ed70c
2 changed files with 10 additions and 7 deletions

View file

@ -15,6 +15,8 @@ export interface FooterCategoryProps {
links: { name: string; url: string }[]; links: { name: string; url: string }[];
} }
const year = new Date().getFullYear();
function FooterCategory({ category, links }: FooterCategoryProps) { function FooterCategory({ category, links }: FooterCategoryProps) {
return ( return (
<FooterCategoryContainer> <FooterCategoryContainer>
@ -84,7 +86,7 @@ export function Footer() {
</FooterCategories> </FooterCategories>
<FooterEnd> <FooterEnd>
<Text13 style={{ fontWeight: 400 }}> <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{' '} contributors. Content available under a{' '}
<a href={LICENSE_LINK} target={'_blank'} rel={'nofollow noreferrer'}> <a href={LICENSE_LINK} target={'_blank'} rel={'nofollow noreferrer'}>
MIT License MIT License

View file

@ -43,14 +43,15 @@ const Home: NextPage<HomeProps> = ({
<HeaderBackground> <HeaderBackground>
<HeroHead> <HeroHead>
<HeroText>Say hello</HeroText> <HeroText>Say hello</HeroText>
<HeroTextSecondary>to your new icon library.</HeroTextSecondary> <HeroTextSecondary>
to your new free icon library.
</HeroTextSecondary>
</HeroHead> </HeroHead>
</HeaderBackground> </HeaderBackground>
<HeroDescription> <HeroDescription>
A high-quality selection of free icons. No premium options or A high-quality selection of free icons. Your new alternative to Noun
sign-ups. Your new alternative to Noun Project, Flaticon, and all Project, Flaticon, and all Figma resources. Available in SVG, Font,
Figma resources. Available in SVG, Font, React, React Native, Flutter, React, React Native, Flutter, Figma and Framer.
Figma and Framer.
</HeroDescription> </HeroDescription>
<StatsContainer> <StatsContainer>
<Stat <Stat
@ -174,7 +175,7 @@ export const HeroText = styled.h1`
`; `;
export const HeroTextSecondary = styled(HeroText)` export const HeroTextSecondary = styled(HeroText)`
color: var(--g4); color: var(--g4);
max-width: 1000px; max-width: 1140px;
`; `;
export const HeroDescription = styled(Text18)<{ topMargin?: number }>` export const HeroDescription = styled(Text18)<{ topMargin?: number }>`
display: block; display: block;