7 Commits

Author SHA1 Message Date
c26c585152 Update src/app/page.tsx 2026-03-10 16:41:40 +00:00
cf76dd9574 Update src/app/styles/base.css 2026-03-10 15:52:12 +00:00
8a149b0abd Update src/app/page.tsx 2026-03-10 15:52:12 +00:00
93cf6cf24a Update src/app/layout.tsx 2026-03-10 15:52:11 +00:00
7d80654c44 Update src/app/page.tsx 2026-03-10 15:21:11 +00:00
195f7c110f Update src/app/page.tsx 2026-03-10 14:34:19 +00:00
06a5fc0276 Merge version_2 into main
Merge version_2 into main
2026-03-10 14:05:19 +00:00
3 changed files with 8 additions and 5 deletions

View File

@@ -6,6 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { DM_Sans } from "next/font/google";
import { Libre_Baskerville, Inter } from "next/font/google";
@@ -14,8 +15,10 @@ export const metadata: Metadata = {
description: 'Discover Stilton Cafe - your late-night sanctuary with boho vibes, rustic charm, and the best naan turnovers. Open 12 PM - 4 AM in Vasant Kunj. Perfect for midnight cravings.',
};
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville", subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
@@ -29,7 +32,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -22,7 +22,7 @@ export default function SiltonPage() {
cardStyle="gradient-radial"
primaryButtonStyle="gradient"
secondaryButtonStyle="layered"
headingFontWeight="bold"
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered

View File

@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-dm-sans), sans-serif;
font-family: var(--font-libre-baskerville), serif;
}