Update src/app/page.tsx

This commit is contained in:
2026-03-04 19:34:23 +00:00
parent 51ac04332d
commit 7b40caf25c

View File

@@ -9,7 +9,7 @@ import ProductCardThree from '@/components/sections/product/ProductCardThree';
import MetricCardTen from '@/components/sections/metrics/MetricCardTen';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import ContactText from '@/components/sections/contact/ContactText';
import FooterCard from '@/components/sections/footer/FooterCard';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Award, BarChart3, Brain, CheckCircle2, Code2, Github, Handshake, Lightbulb, Linkedin, Mail, MapPin, Phone, Search, Target, TrendingUp, Workflow, Wrench, Zap, ShieldCheck, Users, Sparkles, TrendingDown, RotateCw, Activity } from "lucide-react";
export default function LandingPage() {
@@ -377,14 +377,32 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterCard
<FooterBaseCard
logoText="WOLNY STUDIO AI"
copyrightText="© 2025 WOLNY STUDIO AI. Tworzymy systemy, które zarabiają."
socialLinks={[
{ icon: Linkedin, href: "https://linkedin.com", ariaLabel: "LinkedIn" },
{ icon: Github, href: "https://github.com", ariaLabel: "GitHub" },
{ icon: Mail, href: "mailto:hello@walnystudio.ai", ariaLabel: "Email" }
columns={[
{
title: "Firma", items: [
{ label: "O nas", href: "#about" },
{ label: "Proces", href: "#process" },
{ label: "Kontakt", href: "#contact" }
]
},
{
title: "Usługi", items: [
{ label: "Systemy Webowe", href: "#services" },
{ label: "Automatyzacje AI", href: "#services" },
{ label: "Digitalizacja", href: "#services" }
]
},
{
title: "Kontakt", items: [
{ label: "hello@walnystudio.ai", href: "mailto:hello@walnystudio.ai" },
{ label: "Warszawa, Polska", href: "#" }
]
}
]}
copyrightText="© 2025 WOLNY STUDIO AI. Tworzymy systemy, które zarabiają."
onPrivacyClick={() => {}}
ariaLabel="Stopka strony"
/>
</div>