-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
409b683
commit 126cb19
Showing
4 changed files
with
32 additions
and
4 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters