6 Commits

Author SHA1 Message Date
96ab4b3fd9 Update src/app/page.tsx 2026-04-24 15:03:06 +00:00
4aaf0c5e0e Update src/app/page.tsx 2026-04-24 15:00:45 +00:00
7d47676364 Update theme fonts 2026-04-24 14:57:36 +00:00
bc00594653 Update theme fonts 2026-04-24 14:57:35 +00:00
09517f483a Update theme fonts 2026-04-24 14:57:21 +00:00
51399ec902 Update theme fonts 2026-04-24 14:57:21 +00:00
4 changed files with 19 additions and 15 deletions

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Source_Sans_3 } from "next/font/google";
import { Roboto } from "next/font/google";
@@ -18,9 +19,12 @@ export const metadata: Metadata = {
},
};
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
const roboto = Roboto({
variable: "--font-roboto",
subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export default function RootLayout({
@@ -31,7 +35,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}>
<body className={`${roboto.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -47,7 +47,7 @@ export default function LandingPage() {
title="Sinner Smash Society"
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" }]}
imageSrc="https://img.b2bpic.net/free-photo/gourmet-burger-with-fries-dark-background_23-2148469878.jpg"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CoAg7Gpp45ZgrdDE5qcmlAKPj3/uploaded-1777042791687-clkkqemp.jpg"
mediaAnimation="blur-reveal"
/>
</div>
@@ -62,7 +62,7 @@ export default function LandingPage() {
{ value: "07", title: "Days Open" },
{ value: "24h", title: "Available" },
]}
imageSrc="https://img.b2bpic.net/free-photo/chef-cooking-burger-grill_23-2149177112.jpg"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CoAg7Gpp45ZgrdDE5qcmlAKPj3/uploaded-1777042977777-fw2yrsvi.jpg"
/>
</div>

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-source-sans-3), sans-serif;
font-family: var(--font-roboto), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-source-sans-3), sans-serif;
font-family: var(--font-roboto), sans-serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000612e6;
--primary-cta: #15479c;
--background: #0a0a0a;
--card: #171717;
--foreground: #f5f5f5;
--primary-cta: #ff4500;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000612e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
--secondary-cta: #262626;
--secondary-cta-text: #f5f5f5;
--accent: #ff6347;
--background-accent: #262626;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);