Listen to and share the music in the Atmosphere. musicsky.up.railway.app/
nextjs atproto music typescript react
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: new font

Signed-off-by: mejsiejdev <mejsiejdev@gmail.com>

authored by

mejsiejdev and committed by tangled.org 0c0a6792 73400dcb

+4 -12
+4 -12
apps/web/src/app/layout.tsx
··· 2 2 import { ThemeProvider } from "@/components/theme-provider"; 3 3 import { Toaster } from "@/components/ui/sonner"; 4 4 import { TooltipProvider } from "@/components/ui/tooltip"; 5 - import { Geist, Geist_Mono } from "next/font/google"; 5 + import { DM_Sans } from "next/font/google"; 6 6 import "./globals.css"; 7 7 8 - const geistSans = Geist({ 9 - variable: "--font-geist-sans", 10 - subsets: ["latin"], 11 - }); 12 - 13 - const geistMono = Geist_Mono({ 14 - variable: "--font-geist-mono", 8 + const dmSans = DM_Sans({ 15 9 subsets: ["latin"], 16 10 }); 17 11 18 12 export const metadata: Metadata = { 19 - title: "MusicSky", 13 + title: "Musicsky", 20 14 description: "Listen and share the music in the Atmosphere.", 21 15 }; 22 16 ··· 27 21 }>) { 28 22 return ( 29 23 <html lang="en" suppressHydrationWarning> 30 - <body 31 - className={`${geistSans.variable} ${geistMono.variable} antialiased`} 32 - > 24 + <body className={`${dmSans.className} antialiased`}> 33 25 <ThemeProvider 34 26 attribute="class" 35 27 defaultTheme="system"