Update src/app/page.tsx

This commit is contained in:
2026-01-08 15:08:59 +00:00
parent 8578d95dc5
commit 29423375d7

View File

@@ -10,6 +10,7 @@ import TeamCardThree from '@/components/sections/team/TeamCardThree';
import TestimonialCardEleven from '@/components/sections/testimonial/TestimonialCardEleven';
import ContactInline from '@/components/sections/contact/ContactInline';
import FooterBase from '@/components/sections/footer/FooterBase';
import ButtonIconArrow from '@/components/button/ButtonIconArrow';
import { Users, Share2, Handshake, TrendingUp, Linkedin, Twitter, Instagram, Github, Mail } from "lucide-react";
export default function LandingPage() {
@@ -17,7 +18,7 @@ export default function LandingPage() {
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="entrance-slide"
borderRadius="sharp"
borderRadius="rounded"
contentWidth="mediumSmall"
sizing="mediumLargeSizeMediumTitles"
background="none"
@@ -47,6 +48,9 @@ export default function LandingPage() {
imageAlt="Creative studio and production team workspace"
frameStyle="card"
logoLineHeight={1.1}
buttons={[
{ text: "Get Started", href: "contact" }
]}
/>
</div>
@@ -234,4 +238,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}