22 lines
603 B
TypeScript
22 lines
603 B
TypeScript
import Soundboard from '@/components/Soundboard';
|
|
import { Metadata } from 'next';
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Doyle Gammill Soundboard",
|
|
description: "The huskiest sounds on the Internet!",
|
|
openGraph: {
|
|
title: "Doyle Gammill Soundboard",
|
|
description: "The huskiest sounds on the Internet!",
|
|
siteName: "Doyle Gammill Soundboard",
|
|
}
|
|
};
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="flex flex-col items-center justify-center py-16 gap-16">
|
|
<h1 className="text-4xl font-bold">Doyle Gammill Soundboard</h1>
|
|
<Soundboard/>
|
|
</div>
|
|
);
|
|
}
|