Tax Lawfirm Demo 1

This commit is contained in:
2025-07-01 01:31:16 +00:00
parent d60a5ecbb1
commit f14a2ac5ca
37 changed files with 8077 additions and 5 deletions

View File

@@ -0,0 +1,31 @@
import {Button} from '@/components/ui/button'
import Link from 'next/link'
import {HeroSection} from "@/app/(root)/sections/HeroSection";
import {ServicesSection} from "@/app/(root)/sections/ServicesSection";
import {AboutMeSection} from "@/app/(root)/sections/AboutMeSection";
export default function SteuerkanzleiLandingPage() {
return (
<main className="min-h-screen bg-background text-foreground font-sans">
{/* Hero Section */}
<HeroSection/>
{/* Leistungen */}
<ServicesSection/>
{/* Spezialisierungen */}
{/*<SpecialServicesSection/>*/}
<AboutMeSection/>
{/* Kontakt CTA */}
<section id="kontakt" className="py-20 px-6 text-center">
<h2 className="text-3xl font-bold mb-6">Kontakt aufnehmen</h2>
<p className="mb-8 text-lg">Lassen Sie uns über Ihre steuerlichen Fragen sprechen.</p>
<Link href="/kontakt">
<Button size="lg">Jetzt Termin vereinbaren</Button>
</Link>
</section>
</main>
)
}