19 Commits

Author SHA1 Message Date
af262bb16a Merge version_5 into main
Merge version_5 into main
2026-04-28 20:47:44 +00:00
c65cee0188 Update theme fonts 2026-04-28 20:47:41 +00:00
dbeacd7d4e Update theme fonts 2026-04-28 20:47:40 +00:00
c0f411f3a8 Update theme fonts 2026-04-28 20:47:38 +00:00
44a66bfe29 Update theme fonts 2026-04-28 20:47:38 +00:00
b5d84d9be4 Merge version_5 into main
Merge version_5 into main
2026-04-28 20:47:33 +00:00
6f6b6f676e Update theme fonts 2026-04-28 20:47:32 +00:00
589dd73635 Update theme fonts 2026-04-28 20:47:31 +00:00
f4947e32ab Update theme fonts 2026-04-28 20:47:30 +00:00
c4c9546723 Update theme fonts 2026-04-28 20:47:29 +00:00
73ade460a9 Merge version_5 into main
Merge version_5 into main
2026-04-28 20:47:17 +00:00
8247ff66bc Update theme colors 2026-04-28 20:47:14 +00:00
3b5f14a904 Merge version_4 into main
Merge version_4 into main
2026-04-28 20:45:13 +00:00
13c5d98eae Update src/app/page.tsx 2026-04-28 20:45:07 +00:00
35dca35312 Merge version_3 into main
Merge version_3 into main
2026-04-28 20:44:04 +00:00
5e36ea8a84 Update src/app/page.tsx 2026-04-28 20:44:01 +00:00
fdd884eba8 Merge version_2 into main
Merge version_2 into main
2026-04-28 20:43:03 +00:00
a6ad97ce0b Update src/app/page.tsx 2026-04-28 20:43:00 +00:00
64b85c559c Merge version_1 into main
Merge version_1 into main
2026-04-28 20:39:42 +00:00
4 changed files with 31 additions and 17 deletions

View File

@@ -7,6 +7,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
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"],
});
@@ -33,7 +43,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -45,7 +45,10 @@ export default function LandingPage() {
<HeroCarouselLogo
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."
buttons={[{ text: "Scopri i prodotti", href: "#products" }]}
buttons={[
{ text: "Scegli il tuo bouquet", href: "#products" },
{ text: "Contattaci", href: "#contact" }
]}
slides={[
{ imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-working-with-dried-flowers_23-2149591621.jpg", imageAlt: "elegant florist boutique interior" },
{ imageSrc: "http://img.b2bpic.net/free-photo/delicate-floral-frame-soft-pink-hues_23-2152004968.jpg", imageAlt: "elegant florist boutique interior" },
@@ -129,7 +132,7 @@ export default function LandingPage() {
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: "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: "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" },
]}
@@ -142,6 +145,7 @@ export default function LandingPage() {
<FaqDouble
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "Contattaci per altro", href: "#contact" }]}
faqs={[
{ id: "q1", title: "Quali sono i tempi di consegna?", content: "Consegniamo entro 24 ore dall'ordine effettuato." },
{ id: "q2", title: "Potete personalizzare i bouquet?", content: "Certamente, contattaci per discutere le tue preferenze." },
@@ -182,4 +186,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

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

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f5f5f5;
--card: #ffffff;
--foreground: #1c1c1c;
--primary-cta: #1c1c1c;
--primary-cta-text: #f5f5f5;
--secondary-cta: #ffffff;
--secondary-cta-text: #1c1c1c;
--accent: #159c49;
--background-accent: #a8e8ba;
--background: #060000;
--card: #1d0d0d;
--foreground: #ffe6e6;
--primary-cta: #ff3d4a;
--primary-cta-text: #ffffff;
--secondary-cta: #1f0a0a;
--secondary-cta-text: #ffe6e6;
--accent: #7b2d2d;
--background-accent: #b8111f;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);