8 Commits

Author SHA1 Message Date
628c30cac4 Merge version_2 into main
Merge version_2 into main
2026-03-05 04:52:19 +00:00
9ce2c1cb6a Update src/app/page.tsx 2026-03-05 04:52:15 +00:00
15b55cc598 Merge version_2 into main
Merge version_2 into main
2026-03-05 04:50:54 +00:00
a6932b0d01 Update src/app/page.tsx 2026-03-05 04:50:49 +00:00
532d9bc2f2 Update src/app/layout.tsx 2026-03-05 04:50:49 +00:00
4675cdd016 Merge version_1 into main
Merge version_1 into main
2026-03-05 04:47:42 +00:00
7c002428ff Merge version_1 into main
Merge version_1 into main
2026-03-05 04:46:51 +00:00
53adcd3e12 Merge version_1 into main
Merge version_1 into main
2026-03-05 04:45:51 +00:00

View File

@@ -1,56 +1,25 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Source_Sans_3 } from "next/font/google";
import "./styles/variables.css";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Craft Coffee SF | Specialty Coffee in San Francisco", description: "Locally roasted, ethically sourced specialty coffee in San Francisco. Order ahead or visit our cafe for the best third space in the Mission.", keywords: "specialty coffee San Francisco, locally roasted coffee, artisanal espresso, fair trade coffee, coffee shop Mission District", metadataBase: new URL("https://craftcoffeesf.local"),
openGraph: {
title: "Craft Coffee SF - San Francisco's Community Coffee Shop", description: "Locally roasted, expertly brewed coffee made for real conversations. Stop by or order ahead.", type: "website", siteName: "Craft Coffee SF", images: [
{
url: "http://img.b2bpic.net/free-photo/close-up-barista-hands-preparing-coffee-customer-coffee-shop_93675-135317.jpg", alt: "Craft Coffee SF counter with specialty espresso drinks"
}
]
},
twitter: {
card: "summary_large_image", title: "Craft Coffee SF - Local Coffee Community", description: "Locally roasted, expertly brewed, made for real conversations.", images: ["http://img.b2bpic.net/free-photo/selective-closeup-shot-coffee-with-latte-art-black-ceramic-cup-wooden-surface_181624-3880.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Craft Coffee", description: "Locally roasted, expertly brewed craft coffee in San Francisco"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.variable}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1418,7 +1387,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}