Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c221ccaa9d | |||
| 8fadaa4d17 | |||
| bc64a5c1d4 |
@@ -7,7 +7,6 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { Source_Sans_3 } from "next/font/google";
|
import { Source_Sans_3 } from "next/font/google";
|
||||||
import { Roboto } from "next/font/google";
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -19,12 +18,9 @@ export const metadata: Metadata = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const sourceSans3 = Source_Sans_3({
|
||||||
|
variable: "--font-source-sans-3",
|
||||||
const roboto = Roboto({
|
|
||||||
variable: "--font-roboto",
|
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
weight: ["100", "300", "400", "500", "700", "900"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
@@ -35,7 +31,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${roboto.variable} antialiased`}>
|
<body className={`${sourceSans3.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ export default function LandingPage() {
|
|||||||
title="Sinner Smash Society"
|
title="Sinner Smash Society"
|
||||||
description="Lisbon's most rebellious smash burger destination. Where hedonistic taste meets the concrete jungle."
|
description="Lisbon's most rebellious smash burger destination. Where hedonistic taste meets the concrete jungle."
|
||||||
buttons={[{ text: "Order Now", href: "https://glovoapp.com" }, { text: "Reserve", href: "#contact" }]}
|
buttons={[{ text: "Order Now", href: "https://glovoapp.com" }, { text: "Reserve", href: "#contact" }]}
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CoAg7Gpp45ZgrdDE5qcmlAKPj3/uploaded-1777042791687-clkkqemp.jpg"
|
imageSrc="https://img.b2bpic.net/free-photo/gourmet-burger-with-fries-dark-background_23-2148469878.jpg"
|
||||||
mediaAnimation="blur-reveal"
|
mediaAnimation="blur-reveal"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -62,7 +62,7 @@ export default function LandingPage() {
|
|||||||
{ value: "07", title: "Days Open" },
|
{ value: "07", title: "Days Open" },
|
||||||
{ value: "24h", title: "Available" },
|
{ value: "24h", title: "Available" },
|
||||||
]}
|
]}
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CoAg7Gpp45ZgrdDE5qcmlAKPj3/uploaded-1777042977777-fw2yrsvi.jpg"
|
imageSrc="https://img.b2bpic.net/free-photo/chef-cooking-burger-grill_23-2149177112.jpg"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -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-roboto), sans-serif;
|
font-family: var(--font-source-sans-3), 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-roboto), sans-serif;
|
font-family: var(--font-source-sans-3), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #0a0a0a;
|
--background: #ffffff;
|
||||||
--card: #171717;
|
--card: #f9f9f9;
|
||||||
--foreground: #f5f5f5;
|
--foreground: #000612e6;
|
||||||
--primary-cta: #ff4500;
|
--primary-cta: #15479c;
|
||||||
--primary-cta-text: #ffffff;
|
--primary-cta-text: #ffffff;
|
||||||
--secondary-cta: #262626;
|
--secondary-cta: #f9f9f9;
|
||||||
--secondary-cta-text: #f5f5f5;
|
--secondary-cta-text: #000612e6;
|
||||||
--accent: #ff6347;
|
--accent: #e2e2e2;
|
||||||
--background-accent: #262626;
|
--background-accent: #c4c4c4;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user