1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-08-06 14:16:50 +02:00

feat: Update header and footer

This commit is contained in:
Phuoc Nguyen
2022-08-21 19:59:09 +07:00
parent 78dedd0fc7
commit 3bb07d8358
2 changed files with 7 additions and 7 deletions

View File

@@ -5,27 +5,27 @@ export const FooterBlock = () => (
<footer className="block-footer">
<div className="block-container">
<Footer>
<FooterGroup title="Products">
<FooterGroup title="My products">
<FooterLink href="https://blur.page">Blur Page</FooterLink>
<FooterLink href="https://formvalidation.io">Form Validation</FooterLink>
<FooterLink href="https://intersectionobserver.io">IntersectionObserver Examples</FooterLink>
<FooterLink href="https://react-pdf-viewer.dev">React PDF Viewer</FooterLink>
</FooterGroup>
<FooterGroup title="Open sources">
<FooterGroup title="My open sources">
<FooterLink href="https://1loc.dev">1 LOC</FooterLink>
<FooterLink href="https://csslayout.io">CSS Layout</FooterLink>
<FooterLink href="https://getfrontend.tips">Front-end Tips</FooterLink>
<FooterLink href="https://htmldom.dev">HTML DOM</FooterLink>
<FooterLink href="https://thisthat.dev">this VS that</FooterLink>
</FooterGroup>
<FooterGroup title="Follow us">
<FooterLink href="https://github.com/1milligram">GitHub</FooterLink>
<FooterGroup title="Follow me">
<FooterLink href="https://github.com/phuocng">GitHub</FooterLink>
<FooterLink href="https://twitter.com/nghuuphuoc">Twitter</FooterLink>
</FooterGroup>
</Footer>
<div className="block-footer__copyright">
© 2020 {new Date().getFullYear()}, 1 milligram. All rights reserved.
© 2020 {new Date().getFullYear()}, Nguyen Huu Phuoc. All rights reserved.
</div>
</div>
</footer>

View File

@@ -6,7 +6,7 @@ export const HeaderBlock = () => {
const [totalStars, setTotalStars] = React.useState(0);
React.useEffect(() => {
fetch('https://api.github.com/repos/1milligram/csslayout')
fetch('https://api.github.com/repos/phuocng/csslayout')
.then((res) => res.json())
.then((data) => setTotalStars(data.stargazers_count))
.catch(console.log);
@@ -27,7 +27,7 @@ export const HeaderBlock = () => {
<Link href="/" passHref>
<HeaderLogo />
</Link>
<Link href="https://github.com/1milligram/csslayout">
<Link href="https://github.com/phuocng/csslayout">
<a className="block-header__cta">GitHub {totalStars}</a>
</Link>
</div>