mirror of
https://github.com/skidoodle/albert.lol.git
synced 2025-02-15 06:09:15 +01:00
Initial commit
This commit is contained in:
commit
1f8d8f5b68
31 changed files with 4523 additions and 0 deletions
27
src/pages/index.tsx
Normal file
27
src/pages/index.tsx
Normal file
|
@ -0,0 +1,27 @@
|
|||
import { ThemeSwitcher } from '@/components/ThemeSwitcher'
|
||||
import { NowPlayingCard } from '@/components/SpotifyCard'
|
||||
import { SocialLayout } from '@/components/SocialLayout'
|
||||
import { Toaster } from 'react-hot-toast'
|
||||
import FadeIn from 'react-fade-in'
|
||||
import age from '@/utils/age'
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<>
|
||||
<ThemeSwitcher />
|
||||
<FadeIn>
|
||||
<div className='ml-[10%] mr-[10%]'>
|
||||
<div className='mx-auto mb-16 mt-32 flex max-w-3xl flex-col'>
|
||||
<h1 className='text-7xl font-bold'>albert</h1>
|
||||
<p className='mt-2 text-2xl font-semibold text-gray-600'>
|
||||
{age()}-year-old sysadmin
|
||||
</p>
|
||||
<SocialLayout />
|
||||
<NowPlayingCard />
|
||||
<Toaster position='top-left' />
|
||||
</div>
|
||||
</div>
|
||||
</FadeIn>
|
||||
</>
|
||||
)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue