Merge version_3 into main #4

Merged
bender merged 3 commits from version_3 into main 2026-03-10 15:52:17 +00:00
3 changed files with 7 additions and 6 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

@@ -9,7 +9,6 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterCard from '@/components/sections/footer/FooterCard';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import { Instagram, MapPin, Phone, Sparkles, Utensils, Quote } from "lucide-react";
import Link from "next/link";
export default function SiltonPage() {
return (
@@ -162,7 +161,6 @@ export default function SiltonPage() {
{ text: "Leave a Review", href: "https://www.google.com" }
]}
buttonAnimation="slide-up"
textBoxTitleClassName="font-semibold"
/>
</div>

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;
}