Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 44bf68327c | |||
| 8a4697d2d3 | |||
| f2fc387c28 | |||
| 36918ed9ae | |||
| 4c55c03794 | |||
| b3cb0b2cb7 | |||
| 53c059d912 | |||
| cda495c13f | |||
| 0972431ef8 | |||
| 1bab987b5e | |||
| 6f3125d7d5 |
@@ -1,23 +1,12 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Lato } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Roboto } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const halant = Halant({
|
const lato = Lato({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: "--font-lato", subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
weight: ["100", "300", "400", "700", "900"],
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const roboto = Roboto({
|
|
||||||
variable: "--font-roboto", subsets: ["latin"],
|
|
||||||
weight: ["100", "300", "400", "500", "700", "900"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
@@ -46,7 +35,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
|
className={`${lato.variable} antialiased`}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardTestimonial
|
<HeroBillboardTestimonial
|
||||||
title="Freshly Baked Goodness Every Day"
|
title="Freshly Baked Goodness - Every Day"
|
||||||
description="Experience the warmth of artisanal baking. From classic loaves to delicate pastries, every product is crafted with love and the finest ingredients."
|
description="Experience the warmth of artisanal baking. From classic loaves to delicate pastries, every product is crafted with love and the finest ingredients."
|
||||||
tag="Premium Bakery"
|
tag="Premium Bakery"
|
||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
|
|||||||
@@ -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-lato), 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-lato), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #737373;;
|
--accent: #737373;;
|
||||||
--background-accent: #737373;; */
|
--background-accent: #737373;; */
|
||||||
|
|
||||||
--background: #0a0a0a;;
|
--background: #080000;;
|
||||||
--card: #1a1a1a;;
|
--card: #1d0d0d;;
|
||||||
--foreground: #ffffffe6;;
|
--foreground: #ffe6e6;;
|
||||||
--primary-cta: #e6e6e6;;
|
--primary-cta: #ff3d4a;;
|
||||||
--primary-cta-text: #f5f5f5;;
|
--primary-cta-text: #f5f5f5;;
|
||||||
--secondary-cta: #1a1a1a;;
|
--secondary-cta: #1f0a0a;;
|
||||||
--secondary-cta-text: #1c1c1c;;
|
--secondary-cta-text: #1c1c1c;;
|
||||||
--accent: #737373;;
|
--accent: #7b2d2d;;
|
||||||
--background-accent: #737373;;
|
--background-accent: #b8111f;;
|
||||||
|
|
||||||
/* 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