Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #10.
This commit is contained in:
2026-03-03 08:47:33 +00:00
3 changed files with 9 additions and 19 deletions

View File

@@ -1,24 +1,13 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
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 manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "DG Cafe - Premium Coffee & Dining in Chiplun", description: "Experience premium café excellence at DG Cafe. Dine-in, drive-through, or delivery. Signature coffee, gourmet food, and warm ambiance in Chiplun, Maharashtra.", keywords: "cafe Chiplun, premium coffee, restaurant, dine-in, drive-through, delivery, food", openGraph: {
title: "DG Cafe - Premium Café Experience", description: "Discover premium café excellence in Chiplun. Signature coffee, gourmet dishes, and unforgettable moments.", siteName: "DG Cafe", type: "website", images: [
@@ -44,9 +33,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<body className={`${inter.variable} antialiased`}>
<Tag />
{children}

View File

@@ -93,13 +93,16 @@ export default function LandingPage() {
tagAnimation="slide-up"
features={[
{
id: 1, title: "Dine-In Experience", description: "Cozy seating with warm ambiance, perfect for friends, couples, and families seeking intimate café moments", imageSrc: "http://img.b2bpic.net/free-photo/event-hall-wooden-table-with-rustic-chairs_114579-2233.jpg", imageAlt: "Premium dine-in seating area"
id: 1,
title: "Dine-In Experience", description: "Cozy seating with warm ambiance, perfect for friends, couples, and families seeking intimate café moments", imageSrc: "http://img.b2bpic.net/free-photo/event-hall-wooden-table-with-rustic-chairs_114579-2233.jpg", imageAlt: "Premium dine-in seating area"
},
{
id: 2, title: "Fast Drive-Through", description: "Quick service for on-the-go customers. Order from your car and enjoy fresh café specialties without leaving", imageSrc: "http://img.b2bpic.net/free-photo/smiling-customer-interaction-with-mechanic_1170-1431.jpg", imageAlt: "Efficient drive-through service"
id: 2,
title: "Fast Drive-Through", description: "Quick service for on-the-go customers. Order from your car and enjoy fresh café specialties without leaving", imageSrc: "http://img.b2bpic.net/free-photo/smiling-customer-interaction-with-mechanic_1170-1431.jpg", imageAlt: "Efficient drive-through service"
},
{
id: 3, title: "Quick Delivery", description: "Reliable delivery service bringing your favorite café treats directly to your doorstep, fresh and hot", imageSrc: "http://img.b2bpic.net/free-photo/courier-delivering-groceries-home_23-2149737963.jpg", imageAlt: "Professional food delivery service"
id: 3,
title: "Quick Delivery", description: "Reliable delivery service bringing your favorite café treats directly to your doorstep, fresh and hot", imageSrc: "http://img.b2bpic.net/free-photo/courier-delivering-groceries-home_23-2149737963.jpg", imageAlt: "Professional food delivery service"
}
]}
textboxLayout="default"

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-manrope), sans-serif;
font-family: var(--font-inter), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-manrope), sans-serif;
font-family: var(--font-inter), sans-serif;
}