Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c65cee0188 | |||
| dbeacd7d4e | |||
| c0f411f3a8 | |||
| 44a66bfe29 | |||
| 6f6b6f676e | |||
| 589dd73635 | |||
| f4947e32ab | |||
| c4c9546723 | |||
| 8247ff66bc | |||
| 13c5d98eae | |||
| 35dca35312 |
@@ -7,6 +7,8 @@ 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 { Manrope } from "next/font/google";
|
import { Manrope } from "next/font/google";
|
||||||
|
import { DM_Sans } from "next/font/google";
|
||||||
|
import { Montserrat } from "next/font/google";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -20,8 +22,16 @@ export const metadata: Metadata = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const manrope = Manrope({
|
|
||||||
variable: "--font-manrope",
|
|
||||||
|
|
||||||
|
|
||||||
|
const montserrat = Montserrat({
|
||||||
|
variable: "--font-montserrat",
|
||||||
|
subsets: ["latin"],
|
||||||
|
});
|
||||||
|
const inter = Inter({
|
||||||
|
variable: "--font-inter",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -33,7 +43,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${manrope.variable} antialiased`}>
|
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ export default function LandingPage() {
|
|||||||
logoText="I Fiori Della Primula"
|
logoText="I Fiori Della Primula"
|
||||||
description="Portiamo la bellezza della natura a casa tua con composizioni floreali uniche, create con passione e dedizione per ogni occasione."
|
description="Portiamo la bellezza della natura a casa tua con composizioni floreali uniche, create con passione e dedizione per ogni occasione."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Scopri i prodotti", href: "#products" },
|
{ text: "Scegli il tuo bouquet", href: "#products" },
|
||||||
{ text: "Contattaci", href: "#contact" }
|
{ text: "Contattaci", href: "#contact" }
|
||||||
]}
|
]}
|
||||||
slides={[
|
slides={[
|
||||||
@@ -132,7 +132,7 @@ export default function LandingPage() {
|
|||||||
testimonials={[
|
testimonials={[
|
||||||
{ id: "1", name: "Anna Rossi", role: "Cliente", company: "Milano", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/chaming-surprised-dark-skinned-woman-gets-bouquet-flowers_273609-46095.jpg" },
|
{ id: "1", name: "Anna Rossi", role: "Cliente", company: "Milano", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/chaming-surprised-dark-skinned-woman-gets-bouquet-flowers_273609-46095.jpg" },
|
||||||
{ id: "2", name: "Marco Verdi", role: "Cliente", company: "Roma", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/bride-inwedding-dress-holding-sniffing-wedding-bouquet_8353-12583.jpg" },
|
{ id: "2", name: "Marco Verdi", role: "Cliente", company: "Roma", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/bride-inwedding-dress-holding-sniffing-wedding-bouquet_8353-12583.jpg" },
|
||||||
{ id: "3", name: "Sara Bianchi", role: "Cliente", company: "Torino", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-woman-with-shopping-bags_1187-3648.jpg" },
|
{ id: "3", name: "Sara Bianchi", role: "Cliente", company: "Torino", rating: 5, imageSrc: "http://img.b2bpic.net/pretty-young-woman-with-shopping-bags_1187-3648.jpg" },
|
||||||
{ id: "4", name: "Giulia Neri", role: "Cliente", company: "Firenze", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/anxious-pretty-young-woman-holding-bouquet-flowers-biting-her-nail_141793-125296.jpg" },
|
{ id: "4", name: "Giulia Neri", role: "Cliente", company: "Firenze", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/anxious-pretty-young-woman-holding-bouquet-flowers-biting-her-nail_141793-125296.jpg" },
|
||||||
{ id: "5", name: "Luca Blu", role: "Cliente", company: "Bologna", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-celebrating-mother-s-day_23-2151207241.jpg" },
|
{ id: "5", name: "Luca Blu", role: "Cliente", company: "Bologna", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-celebrating-mother-s-day_23-2151207241.jpg" },
|
||||||
]}
|
]}
|
||||||
|
|||||||
@@ -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-manrope), sans-serif;
|
font-family: var(--font-inter), 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-manrope), sans-serif;
|
font-family: var(--font-montserrat), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #f5f5f5;
|
--background: #060000;
|
||||||
--card: #ffffff;
|
--card: #1d0d0d;
|
||||||
--foreground: #1c1c1c;
|
--foreground: #ffe6e6;
|
||||||
--primary-cta: #1c1c1c;
|
--primary-cta: #ff3d4a;
|
||||||
--primary-cta-text: #f5f5f5;
|
--primary-cta-text: #ffffff;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #1f0a0a;
|
||||||
--secondary-cta-text: #1c1c1c;
|
--secondary-cta-text: #ffe6e6;
|
||||||
--accent: #159c49;
|
--accent: #7b2d2d;
|
||||||
--background-accent: #a8e8ba;
|
--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