13 Commits

Author SHA1 Message Date
2b1a025c50 Merge version_11 into main
Merge version_11 into main
2026-04-21 13:12:15 +00:00
06a6855b81 Update theme fonts 2026-04-21 13:12:12 +00:00
2287dddb85 Update theme fonts 2026-04-21 13:12:11 +00:00
97105779f0 Merge version_11 into main
Merge version_11 into main
2026-04-21 13:12:07 +00:00
ecc69cf335 Update theme fonts 2026-04-21 13:12:04 +00:00
da8423f5d0 Update theme fonts 2026-04-21 13:12:03 +00:00
4c2876e21f Merge version_11 into main
Merge version_11 into main
2026-04-21 13:08:38 +00:00
e422cfff0b Update src/app/page.tsx 2026-04-21 13:08:31 +00:00
aac0261696 Merge version_10 into main
Merge version_10 into main
2026-04-21 13:05:04 +00:00
f9df0db0a7 Update src/app/page.tsx 2026-04-21 13:04:58 +00:00
781ba9a13d Merge version_9 into main
Merge version_9 into main
2026-04-21 13:03:09 +00:00
84aa8af762 Update src/app/page.tsx 2026-04-21 13:03:03 +00:00
40fff41d53 Merge version_8 into main
Merge version_8 into main
2026-04-21 12:59:25 +00:00
3 changed files with 12 additions and 7 deletions

View File

@@ -7,6 +7,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Mulish } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
@@ -15,9 +17,12 @@ export const metadata: Metadata = {
description: "Generated by create next app",
};
const mulish = Mulish({
variable: "--font-mulish",
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
@@ -32,7 +37,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -49,7 +49,7 @@ export default function LandingPage() {
<HeroSplitDoubleCarousel
background={{
variant: "gradient-bars"}}
title="Guaranteed 30-Minute Delivery: Restaurant Quality at Your Door"
title="Get Your Favorite Local Meals Delivered in 30 Minutes or Less"
description="Experience premium restaurant quality food delivered directly to your doorstep with our fast and reliable delivery service."
leftCarouselItems={[
{
@@ -79,7 +79,7 @@ export default function LandingPage() {
{
text: "View Menu", href: "#products"},
{
text: "Order Now", href: "#contact"},
text: "Get Fast Delivery", href: "#contact"},
]}
avatars={[
{
@@ -222,7 +222,7 @@ export default function LandingPage() {
useInvertedBackground={true}
faqs={[
{
id: "1", title: "How fast is the delivery?", content: "Our average delivery time is 30 minutes for local orders."},
id: "1", title: "What is your 30-minute delivery promise?", content: "Our average delivery time is 30 minutes for local orders."},
{
id: "2", title: "Do you offer contact-less delivery?", content: "Yes, we offer completely contactless delivery options."},
{

View File

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