Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2b1a025c50 | |||
| 06a6855b81 | |||
| 2287dddb85 | |||
| 97105779f0 | |||
| ecc69cf335 | |||
| da8423f5d0 | |||
| 4c2876e21f | |||
| e422cfff0b | |||
| aac0261696 | |||
| f9df0db0a7 | |||
| 781ba9a13d |
@@ -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
|
||||
|
||||
@@ -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={[
|
||||
{
|
||||
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-mulish), sans-serif;
|
||||
font-family: var(--font-libre-baskerville), serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user