Merge version_2 into main #10
@@ -1,24 +1,13 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Manrope } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const halant = Halant({
|
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
const inter = Inter({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const manrope = Manrope({
|
|
||||||
variable: "--font-manrope", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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 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: [
|
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 (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body className={`${inter.variable} antialiased`}>
|
||||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|
||||||
|
|||||||
@@ -93,13 +93,16 @@ export default function LandingPage() {
|
|||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
features={[
|
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"
|
textboxLayout="default"
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-manrope), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-manrope), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user