32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
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>
|
|
)
|
|
}
|