Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #5.
This commit is contained in:
2026-04-28 10:17:25 +00:00
3 changed files with 12 additions and 13 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 { Mulish } from "next/font/google";
import { Roboto } from "next/font/google";
@@ -21,13 +22,10 @@ export const metadata: Metadata = {
},
};
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
const roboto = Roboto({
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export default function RootLayout({
@@ -38,7 +36,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
<body className={`${roboto.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -36,13 +36,13 @@ export default function LandingPage() {
{ name: "Portfolio", id: "portfolio" },
{ name: "Contatti", id: "contact" },
]}
brandName="PHOCAL"
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CyvZSJ3NIxg1teVTt49uEam1hG/uploaded-1777371002688-1ojagwbu.png"
/>
</div>
<div id="hero" data-section="hero">
<HeroLogo
logoText="PHOCAL"
logoText=""
description="Spot ADV cinematici, creator UGC, e video professionali costruiti per trasformare il tuo brand in revenue engine. Oltre 120 contenuti creati, 35 brand in crescita reale."
buttons={[
{ text: "Richiedi Strategia Gratuita", href: "#contact" },
@@ -160,7 +160,8 @@ export default function LandingPage() {
{ title: "Servizi", items: [{ label: "Spot ADV", href: "#" }, { label: "UGC Creation", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }] },
]}
logoText="PHOCAL"
logoText=""
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CyvZSJ3NIxg1teVTt49uEam1hG/uploaded-1777371002688-1ojagwbu.png"
/>
</div>
</ReactLenis>

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-inter), 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-mulish), sans-serif;
font-family: var(--font-roboto), sans-serif;
}