Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 39dd880d91 | |||
| 11e19ebc74 | |||
| 846430c976 | |||
| 243c0e4697 | |||
| 2f4bc3304a |
@@ -7,6 +7,7 @@ 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 { Roboto } from "next/font/google";
|
import { Roboto } from "next/font/google";
|
||||||
|
import { Open_Sans } from "next/font/google";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -19,10 +20,14 @@ export const metadata: Metadata = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const roboto = Roboto({
|
|
||||||
variable: "--font-roboto",
|
const inter = Inter({
|
||||||
|
variable: "--font-inter",
|
||||||
|
subsets: ["latin"],
|
||||||
|
});
|
||||||
|
const openSans = Open_Sans({
|
||||||
|
variable: "--font-open-sans",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
weight: ["100", "300", "400", "500", "700", "900"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
@@ -33,7 +38,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${roboto.variable} antialiased`}>
|
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -45,9 +45,9 @@ export default function LandingPage() {
|
|||||||
<HeroSplit
|
<HeroSplit
|
||||||
background={{ variant: "rotated-rays-static" }}
|
background={{ variant: "rotated-rays-static" }}
|
||||||
title="Exquisite Weine für Genießer"
|
title="Exquisite Weine für Genießer"
|
||||||
description="Lanza Cariccio Cono bringt Ihnen die besten Tropfen direkt aus den sonnigsten Weinbergen Europas in Ihr Glas."
|
description="Lanza Cariccio Cono Weinimport bringt Ihnen die besten Tropfen direkt aus den sonnigsten Weinbergen Europas in Ihr Glas."
|
||||||
buttons={[{ text: "Sortiment entdecken", href: "#products" }]}
|
buttons={[{ text: "Sortiment entdecken", href: "#products" }]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/hand-pouring-wine-carafe-side-view_23-2149746484.jpg"
|
imageSrc="https://img.b2bpic.net/free-photo/red-wine-bottle-glass-with-copy-space_23-2148232191.jpg?id=5026903"
|
||||||
imageAlt="Luxuriöse Weinflasche im Sonnenuntergang"
|
imageAlt="Luxuriöse Weinflasche im Sonnenuntergang"
|
||||||
mediaAnimation="blur-reveal"
|
mediaAnimation="blur-reveal"
|
||||||
avatars={[
|
avatars={[
|
||||||
@@ -78,7 +78,7 @@ export default function LandingPage() {
|
|||||||
{ title: "Handverlesen", description: "Jede Flasche erfüllt unsere hohen Standards." },
|
{ title: "Handverlesen", description: "Jede Flasche erfüllt unsere hohen Standards." },
|
||||||
{ title: "Nachhaltigkeit", description: "Umweltschutz bei Anbau und Transport." },
|
{ title: "Nachhaltigkeit", description: "Umweltschutz bei Anbau und Transport." },
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/wine-barrels-stacked-cellar-winery_158595-4102.jpg"
|
imageSrc="https://img.b2bpic.net/free-photo/closeup-shot-hand-holding-splashing-glass-wine_181624-57771.jpg?id=27736567"
|
||||||
imageAlt="Tuskanischer Weinberg"
|
imageAlt="Tuskanischer Weinberg"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -169,7 +169,7 @@ export default function LandingPage() {
|
|||||||
{ items: [{ label: "Über uns", href: "#about" }, { label: "Sortiment", href: "#products" }] },
|
{ items: [{ label: "Über uns", href: "#about" }, { label: "Sortiment", href: "#products" }] },
|
||||||
{ items: [{ label: "Kontakt", href: "#contact" }, { label: "Impressum", href: "#" }] },
|
{ items: [{ label: "Kontakt", href: "#contact" }, { label: "Impressum", href: "#" }] },
|
||||||
]}
|
]}
|
||||||
logoText="Lanza Cariccio Cono"
|
logoText="Lanza Cariccio Cono Weinimport"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
@@ -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-open-sans), 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-inter), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,8 +17,8 @@
|
|||||||
--primary-cta-text: #f7f6f7;
|
--primary-cta-text: #f7f6f7;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #ffffff;
|
||||||
--secondary-cta-text: #0c1325;
|
--secondary-cta-text: #0c1325;
|
||||||
--accent: #93c7ff;
|
--accent: #A7012A;
|
||||||
--background-accent: #a8cde8;
|
--background-accent: #A7012A;
|
||||||
|
|
||||||
/* 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