Compare commits

...

5 Commits

Author SHA1 Message Date
9c6703c969 Update src/app/page.tsx 2026-04-28 11:10:18 +00:00
20cb3a727c Update src/app/page.tsx 2026-04-28 11:07:36 +00:00
dbec4497ed Merge version_50 into main
Merge version_50 into main
2026-04-28 11:02:21 +00:00
46642ae505 Update src/app/page.tsx 2026-04-28 11:02:17 +00:00
e15edef33e Merge version_49 into main
Merge version_49 into main
2026-04-28 11:00:02 +00:00

View File

@@ -9,6 +9,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
import TextAbout from '@/components/sections/about/TextAbout'; import TextAbout from '@/components/sections/about/TextAbout';
import ContactText from '@/components/sections/contact/ContactText'; import ContactText from '@/components/sections/contact/ContactText';
import FooterMedia from '@/components/sections/footer/FooterMedia'; import FooterMedia from '@/components/sections/footer/FooterMedia';
import FaqBase from '@/components/sections/faq/FaqBase';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -31,6 +32,7 @@ export default function LandingPage() {
{ name: "Home", id: "hero" }, { name: "Home", id: "hero" },
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Artists", id: "features" }, { name: "Artists", id: "features" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
{ name: "Support", id: "support" }, { name: "Support", id: "support" },
]} ]}
@@ -75,6 +77,21 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="faq" data-section="faq">
<FaqBase
title="Frequently Asked Questions"
description="Got questions about our process or joining the family? We're here to help."
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{ id: "1", title: "How do I submit my demo?", content: "You can reach out via our contact section or you can reach out to us on any of our social media platforms. " },
{ id: "2", title: "What genres do you represent?", content: "We represent all genres, including Hip Hop, R&B, Rock, Country, K-Pop, and more." },
{ id: "3", title: "Can I book an artist?", content: "Yes, please send your booking inquiry through the contact form or our support email." }
]}
/>
</div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplit <ContactSplit
tag="Contact Us" tag="Contact Us"
@@ -110,7 +127,7 @@ export default function LandingPage() {
columns={[ columns={[
{ title: "Socials", items: [ { title: "Socials", items: [
{ label: "Facebook", href: "https://facebook.com" }, { label: "Facebook", href: "https://facebook.com" },
{ label: "Twitter", href: "https://twitter.com" }, { label: "X", href: "https://twitter.com" },
{ label: "Instagram", href: "https://instagram.com" }, { label: "Instagram", href: "https://instagram.com" },
{ label: "TikTok", href: "https://tiktok.com" } { label: "TikTok", href: "https://tiktok.com" }
] } ] }