248 lines
7.9 KiB
TypeScript
248 lines
7.9 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
|
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
|
|
import MediaAbout from '@/components/sections/about/MediaAbout';
|
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
|
import TeamCardFive from '@/components/sections/team/TeamCardFive';
|
|
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="bounce-effect"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="soft"
|
|
contentWidth="smallMedium"
|
|
sizing="mediumLargeSizeMediumTitles"
|
|
background="none"
|
|
cardStyle="gradient-mesh"
|
|
primaryButtonStyle="radial-glow"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="bold"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleCentered
|
|
navItems={[
|
|
{
|
|
name: "Home",
|
|
id: "hero",
|
|
},
|
|
{
|
|
name: "About",
|
|
id: "about",
|
|
},
|
|
{
|
|
name: "Artists",
|
|
id: "artists",
|
|
},
|
|
{
|
|
name: "Contact",
|
|
id: "contact",
|
|
},
|
|
]}
|
|
brandName="Big Track Music"
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroCarouselLogo
|
|
logoText="Big Track Music"
|
|
description="Where talent meets production. We empower independent artists through visionary label services, world-class production, and global distribution."
|
|
buttons={[
|
|
{
|
|
text: "Listen Now",
|
|
href: "#",
|
|
},
|
|
{
|
|
text: "Join the Roster",
|
|
href: "#contact",
|
|
},
|
|
]}
|
|
slides={[
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/lightbox-still-life-arrangement_23-2149198378.jpg",
|
|
imageAlt: "Record label studio interior",
|
|
},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/grayscale-shot-drum-pad-machine-beats-sound-design-wooden-table_181624-58461.jpg",
|
|
imageAlt: "Artist recording in professional studio",
|
|
},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/empty-professional-recording-studio-with-audio-software-pc_482257-93664.jpg",
|
|
imageAlt: "Professional audio production equipment",
|
|
},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/close-up-shot-man-using-keyboard-mouse-playing-online-game_482257-124604.jpg",
|
|
imageAlt: "Studio producer work environment",
|
|
},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/dj-playing-music-mixer-closeup_93675-131771.jpg",
|
|
imageAlt: "Vinyl record detail",
|
|
},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/long-shot-man-looking-painting-canvas_23-2148422120.jpg",
|
|
imageAlt: "Creative studio lighting",
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<MediaAbout
|
|
useInvertedBackground={true}
|
|
title="Crafting the Future of Sound"
|
|
description="Big Track Music is a premier independent record label dedicated to fostering innovation. We bridge the gap between emerging creative talent and worldwide audiences through strategic development and authentic partnership."
|
|
imageSrc="http://img.b2bpic.net/free-photo/team-audio-technician-artist-producing-editing-sound-mixer-console_482257-122171.jpg"
|
|
imageAlt="Creative director in the studio"
|
|
/>
|
|
</div>
|
|
|
|
<div id="artists" data-section="artists">
|
|
<TestimonialCardTwelve
|
|
useInvertedBackground={false}
|
|
testimonials={[
|
|
{
|
|
id: "1",
|
|
name: "Luna Sol",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-with-pink-hairs-looks-positive_114579-14804.jpg?_wi=1",
|
|
},
|
|
{
|
|
id: "2",
|
|
name: "Echo Theory",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/male-artist-painting-studio-with-watercolors_23-2149908447.jpg?_wi=1",
|
|
},
|
|
{
|
|
id: "3",
|
|
name: "Markus K",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/smiling-mechanic-standing-repair-shop_1170-1349.jpg?_wi=1",
|
|
},
|
|
{
|
|
id: "4",
|
|
name: "Jia Lin",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-with-iris-fantasy-colors_23-2150140118.jpg?_wi=1",
|
|
},
|
|
{
|
|
id: "5",
|
|
name: "Rhythm Blue",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/non-binary-person-leather-jacket-sitting-stairs_23-2148760568.jpg?_wi=1",
|
|
},
|
|
]}
|
|
cardTitle="Our Artist Roster"
|
|
cardTag="Featured Artists"
|
|
cardAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="team" data-section="team">
|
|
<TeamCardFive
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
title="Meet Our Visionaries"
|
|
description="The creative minds behind Big Track Music. We are a diverse team of engineers, curators, and industry strategists united by a passion for pure sound."
|
|
tag="Leadership"
|
|
team={[
|
|
{
|
|
id: "t1",
|
|
name: "Alex Rivers",
|
|
role: "Founder & CEO",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/smiling-mechanic-standing-repair-shop_1170-1349.jpg?_wi=2",
|
|
},
|
|
{
|
|
id: "t2",
|
|
name: "Sarah Chen",
|
|
role: "A&R Director",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/male-artist-painting-studio-with-watercolors_23-2149908447.jpg?_wi=2",
|
|
},
|
|
{
|
|
id: "t3",
|
|
name: "Marcus V",
|
|
role: "Head of Production",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-with-iris-fantasy-colors_23-2150140118.jpg?_wi=2",
|
|
},
|
|
{
|
|
id: "t4",
|
|
name: "Elena Rossi",
|
|
role: "Creative Lead",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/non-binary-person-leather-jacket-sitting-stairs_23-2148760568.jpg?_wi=2",
|
|
},
|
|
{
|
|
id: "t5",
|
|
name: "Jordan P",
|
|
role: "Studio Manager",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-with-pink-hairs-looks-positive_114579-14804.jpg?_wi=2",
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactCTA
|
|
useInvertedBackground={true}
|
|
background={{
|
|
variant: "plain",
|
|
}}
|
|
tag="Get in Touch"
|
|
title="Ready to Make Music History?"
|
|
description="We are always scouting for visionary talent and collaborative partners. Reach out to discuss production services, distribution, or roster opportunities."
|
|
buttons={[
|
|
{
|
|
text: "Send a Demo",
|
|
href: "mailto:demo@bigtrackmusic.com",
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterBaseReveal
|
|
logoText="Big Track Music"
|
|
columns={[
|
|
{
|
|
title: "Company",
|
|
items: [
|
|
{
|
|
label: "About Us",
|
|
href: "#about",
|
|
},
|
|
{
|
|
label: "Careers",
|
|
href: "#",
|
|
},
|
|
{
|
|
label: "Press",
|
|
href: "#",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "Resources",
|
|
items: [
|
|
{
|
|
label: "Submit Demo",
|
|
href: "#contact",
|
|
},
|
|
{
|
|
label: "Production Services",
|
|
href: "#",
|
|
},
|
|
{
|
|
label: "Artist FAQ",
|
|
href: "#",
|
|
},
|
|
],
|
|
},
|
|
]}
|
|
copyrightText="© 2024 Big Track Music. All rights reserved."
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|