Update src/app/chi-siamo/page.tsx

This commit is contained in:
2026-04-07 20:22:59 +00:00
parent 9f92add56f
commit 4965bbc069

View File

@@ -8,7 +8,7 @@ import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
@@ -26,28 +26,14 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Il Progetto",
id: "/progetto",
},
{
name: "Approfondimenti",
id: "/informazioni",
},
{
name: "Media",
id: "/media",
},
{
name: "Chi Siamo",
id: "/chi-siamo",
},
{ name: "Home", id: "/" },
{ name: "Il Progetto", id: "/progetto" },
{ name: "Approfondimenti", id: "/informazioni" },
{ name: "Media", id: "/media" },
{ name: "Chi Siamo", id: "/chi-siamo" },
]}
brandName="PFAS Info"
button={{ text: "Contattaci", href: "/chi-siamo" }}
/>
</div>
@@ -57,29 +43,17 @@ export default function LandingPage() {
title="Mettiamoci in contatto"
description="Per domande, collaborazioni o richieste di informazioni specifiche sul progetto."
inputs={[
{
name: "name",
type: "text",
placeholder: "Nome e Cognome",
required: true,
},
{
name: "email",
type: "email",
placeholder: "Email",
required: true,
},
{ name: "name", type: "text", placeholder: "Nome e Cognome", required: true },
{ name: "email", type: "email", placeholder: "Email", required: true },
]}
imageSrc="http://img.b2bpic.net/free-photo/futuristic-control-panel_23-2151957130.jpg?_wi=9"
imageSrc="http://img.b2bpic.net/free-photo/futuristic-control-panel_23-2151957130.jpg"
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Supporto"
title="Scrivici"
description="Siamo qui per rispondere ai tuoi dubbi."
@@ -93,12 +67,7 @@ export default function LandingPage() {
title="Il Nostro Network"
description="Chi ci supporta ogni giorno."
names={[
"Partner A",
"Partner B",
"Partner C",
"Partner D",
"Partner E",
]}
"Partner A", "Partner B", "Partner C", "Partner D", "Partner E"]}
/>
</div>
@@ -106,29 +75,15 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "Progetto",
items: [
{
label: "Il Progetto",
href: "/progetto",
},
{
label: "Chi siamo",
href: "/chi-siamo",
},
title: "Progetto", items: [
{ label: "Il Progetto", href: "/progetto" },
{ label: "Chi siamo", href: "/chi-siamo" },
],
},
{
title: "Informazioni",
items: [
{
label: "Approfondimenti",
href: "/informazioni",
},
{
label: "Media",
href: "/media",
},
title: "Informazioni", items: [
{ label: "Approfondimenti", href: "/informazioni" },
{ label: "Media", href: "/media" },
],
},
]}
@@ -138,4 +93,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}