Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8e553b7754 | |||
| 3c7bbd3d32 | |||
| 18d3d0af91 | |||
| 2cca9eba9a | |||
| 222e5114b2 | |||
| 0c9062a66f | |||
| abf58b5cc1 | |||
| a254dcf875 | |||
| 3b362aea89 | |||
| 84dd3343a6 | |||
| 327b35a662 | |||
| 2eaf716e2b | |||
| 5948092877 | |||
| 7f0ab43c33 | |||
| 85a484a6ad |
@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Poppins } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -41,9 +42,11 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat",
|
||||
|
||||
const poppins = Poppins({
|
||||
variable: "--font-poppins",
|
||||
subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -54,7 +57,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${montserrat.variable} antialiased`}>
|
||||
<body className={`${poppins.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -137,6 +137,14 @@ export default function LandingPage() {
|
||||
title="Delightful Dishes for Every Palate"
|
||||
description="Explore our diverse menu featuring gourmet pizzas, classic fast-food favorites, and refreshing beverages, all crafted with passion."
|
||||
tag="Our Menu"
|
||||
buttons={[
|
||||
{
|
||||
text: "Order Online", href: "#"
|
||||
},
|
||||
{
|
||||
text: "Dine With Us", href: "#location"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -236,4 +244,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
font-family: var(--font-poppins), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
font-family: var(--font-poppins), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #000612e6;
|
||||
--primary-cta: #15479c;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #000612e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #c4c4c4;
|
||||
--background: #FFFFE0;
|
||||
--card: #FFFBF0;
|
||||
--foreground: #333333;
|
||||
--primary-cta: #FFD700;
|
||||
--primary-cta-text: #000000;
|
||||
--secondary-cta: #FDF2E3;
|
||||
--secondary-cta-text: #333333;
|
||||
--accent: #FFEC8B;
|
||||
--background-accent: #FFF8E1;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user