diff --git a/public/sounds/capture.wav b/public/sounds/capture.wav new file mode 100644 index 0000000..8a153b1 Binary files /dev/null and b/public/sounds/capture.wav differ diff --git a/public/sounds/cc0_click.wav b/public/sounds/cc0_click.wav new file mode 100644 index 0000000..1becba2 --- /dev/null +++ b/public/sounds/cc0_click.wav @@ -0,0 +1 @@ +404: Not Found \ No newline at end of file diff --git a/public/sounds/check.wav b/public/sounds/check.wav new file mode 100644 index 0000000..5686dd1 Binary files /dev/null and b/public/sounds/check.wav differ diff --git a/public/sounds/defeat.wav b/public/sounds/defeat.wav new file mode 100644 index 0000000..82ba2ac Binary files /dev/null and b/public/sounds/defeat.wav differ diff --git a/public/sounds/move.wav b/public/sounds/move.wav new file mode 100644 index 0000000..efa9afb Binary files /dev/null and b/public/sounds/move.wav differ diff --git a/public/sounds/victory.wav b/public/sounds/victory.wav new file mode 100644 index 0000000..3178349 Binary files /dev/null and b/public/sounds/victory.wav differ diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 65ae469..2be7141 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -2,6 +2,8 @@ import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; +import Footer from "@/components/Footer"; + const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"], @@ -28,6 +30,7 @@ export default function RootLayout({ className={`${geistSans.variable} ${geistMono.variable} antialiased flex flex-col min-h-screen`} > {children} +