initial commit

This commit is contained in:
Aidan 2025-01-05 14:33:52 -05:00
parent 60ed5888fa
commit 77990f0708
23 changed files with 483 additions and 121 deletions

27
app/layout.tsx Normal file
View file

@ -0,0 +1,27 @@
import './globals.css'
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import '@fortawesome/fontawesome-svg-core/styles.css'
import { config } from '@fortawesome/fontawesome-svg-core'
config.autoAddCss = false
const inter = Inter({ subsets: ['latin'] })
export const metadata: Metadata = {
title: 'Aidan',
description: 'Web Developer & Student',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en" className="dark">
<body className={`${inter.className} bg-gray-900 text-gray-100`}>{children}</body>
</html>
)
}