feat: Introduce map components, navigation, and a shop detail drawer with updated dependencies and global styling.

This commit is contained in:
2025-12-04 23:10:50 -05:00
parent 03ed3d0213
commit de95255a1d
12 changed files with 6238 additions and 47 deletions

View File

@@ -1,26 +1,26 @@
import "~/styles/globals.css";
import { type Metadata } from "next";
import { Geist } from "next/font/google";
import { Lora } from "next/font/google";
import { TRPCReactProvider } from "~/trpc/react";
export const metadata: Metadata = {
title: "Create T3 App",
description: "Generated by create-t3-app",
title: "Lewisburg Coffee Map",
description: "A guide to coffee in Lewisburg, PA",
icons: [{ rel: "icon", url: "/favicon.ico" }],
};
const geist = Geist({
const lora = Lora({
subsets: ["latin"],
variable: "--font-geist-sans",
variable: "--font-lora",
});
export default function RootLayout({
children,
}: Readonly<{ children: React.ReactNode }>) {
return (
<html lang="en" className={`${geist.variable}`}>
<html lang="en" className={`${lora.variable}`}>
<body>
<TRPCReactProvider>{children}</TRPCReactProvider>
</body>