Skip to content

Commit

Permalink
feat: update loved projects list, rename page and URL
Browse files Browse the repository at this point in the history
  • Loading branch information
ayan4m1 committed Jan 22, 2025
1 parent 242b910 commit 1a2d3cd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/components/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default function Header() {
topLevel
to="/projects"
/>
<NavLink icon={faHeart} label="Things I Love" topLevel to="/love" />
<NavLink icon={faHeart} label="Code I Love" topLevel to="/loved" />
<NavDropdown icon={faGamepad} title="Games">
<NavLink to="/games/sudoku" icon={faGrid} label="Sudoku" />
<NavLink to="/games/mahjong" icon={faGameBoard} label="Mahjong" />
Expand Down
22 changes: 10 additions & 12 deletions src/pages/love.js → src/pages/loved.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Container, Row, Col } from 'react-bootstrap';
import { faReact } from '@fortawesome/free-brands-svg-icons';
import { faAtomSimple } from '@fortawesome/pro-solid-svg-icons';

import Layout from 'components/layout';
import GridCard from 'components/gridCard';
Expand All @@ -26,13 +27,14 @@ const data = [
name: 'react-three-fiber',
url: 'https://docs.pmnd.rs/react-three-fiber',
description:
'An incredibly powerful framework for rendering 3D in the browser.'
'An incredibly powerful framework for 3D rendering in the browser.'
},
{
name: 'gfx',
url: 'https://honeythecodewitch.com/gfx/',
name: 'Electron',
icon: faAtomSimple,
url: 'https://www.electronjs.org/',
description:
'An embedded drawing library done the right way, with tons of supported hardware.'
'A desktop application framework powered by Chromium and Node.js.'
},
{
name: 'PlatformIO',
Expand All @@ -45,18 +47,14 @@ const data = [

export default function LovePage() {
return (
<Layout title="Things I Love" description="Software and tooling I support.">
<Layout title="Code I Love" description="Software and tooling I support.">
<Container>
<Row>
<Col xs={12}>
<h1>Things I Love</h1>
<h1>Code I Love</h1>
<p>
My wife and my dog. But you came here for some links, didn&apos;t
you?
</p>
<p>
This is a list of projects, libraries, and other software-related
things I would encourage you to support.
This is a list of software I would encourage you to support or
take advantage of.
</p>
</Col>
</Row>
Expand Down

0 comments on commit 1a2d3cd

Please sign in to comment.