move components to root, remove analytics and speed insights, cleanup on manifesto, update music link text and tilde icon on header, minor home page improvements/tweaks

This commit is contained in:
Aidan 2025-02-01 21:44:25 -05:00
parent 1909a6d9fe
commit 1253a7e0a1
29 changed files with 65 additions and 59 deletions

View file

@ -4,8 +4,6 @@ import React, { useEffect } from 'react';
import './globals.css'
import '@fortawesome/fontawesome-svg-core/styles.css'
import { config } from '@fortawesome/fontawesome-svg-core'
import { SpeedInsights } from "@vercel/speed-insights/next"
import { Analytics } from "@vercel/analytics/react"
import { GeistSans } from 'geist/font/sans';
config.autoAddCss = false
@ -68,8 +66,6 @@ export default function RootLayout({
</head>
<body className={`${GeistSans.className} bg-gray-900 text-gray-100`}>
{children}
<Analytics />
<SpeedInsights />
</body>
</html>
);