Skip to content

Commit

Permalink
feat(ui): add new page
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonsaldan committed Jan 8, 2025
1 parent 409b683 commit 126cb19
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 4 deletions.
Binary file added public/images/sim.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/testimonials/8.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions src/app/about/cat/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import { Link } from '@/components/link'

export default function Page() {
return (
<div className="h-screen bg-white dark:bg-zinc-950">
<div className="flex justify-center px-6 pb-8 pt-8">
<img
className="rounded-3xl sm:h-[800px]"
src="/images/sim.jpg"
alt="cat"
/>
</div>
<div className="text-center">
<h1 className="text-4xl font-bold text-gray-900 dark:text-white">
Simby
</h1>
<p className="text-lg text-gray-700 dark:text-gray-300">
Nocturne's strongest soldier 😼
</p>
<Link href="/about">
<div className="pt-2 text-sm text-gray-700 transition duration-300 ease-in-out hover:text-gray-900 dark:text-gray-300 dark:hover:text-gray-400">
← Go Back
</div>
</Link>
</div>
</div>
)
}
8 changes: 4 additions & 4 deletions src/components/about-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,13 @@ const testimonials = [
href: 'https://x.com/janniksco/status/1852361766283444334',
},
{
body: 'Incredible stuff!',
body: 'Meow',
author: {
name: 'brian',
handle: 'officialbois',
name: 'Simby',
handle: 'nocturneteamcat',
imageUrl: 'testimonials/8.jpg',
},
href: 'https://x.com/officialbois/status/1852280293320999021',
href: '/about/cat',
},
{
body: 'Oh this is cool.',
Expand Down

0 comments on commit 126cb19

Please sign in to comment.