Compare commits
18 Commits
version_32
...
version_39
| Author | SHA1 | Date | |
|---|---|---|---|
| c86008836b | |||
| 1693c2afb9 | |||
| aa1671600d | |||
| 342f49601d | |||
| d3125b0082 | |||
| f6a9dd6a41 | |||
| 7e1ed0882e | |||
| 96aee25ca4 | |||
| f8d4e66ee4 | |||
| d4bb273200 | |||
| 088583478f | |||
| 1bf8cae060 | |||
| 7784ac5e1b | |||
| 26b8633ab8 | |||
| 3b45f87f41 | |||
| 007e4c9abe | |||
| 91d8133827 | |||
| 01ee6404b9 |
@@ -4,12 +4,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
|
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
|
||||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
|
||||||
import HeroSplit from '@/components/sections/hero/HeroSplit';
|
import HeroSplit from '@/components/sections/hero/HeroSplit';
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
import TextAbout from '@/components/sections/about/TextAbout';
|
import TextAbout from '@/components/sections/about/TextAbout';
|
||||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
|
||||||
import EmailSignupForm from '@/components/form/EmailSignupForm';
|
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -43,7 +40,6 @@ export default function LandingPage() {
|
|||||||
background={{ variant: "radial-gradient" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
title="I Bang Records"
|
title="I Bang Records"
|
||||||
description="A Record Label that works with all Genres of Music. Specializes in Hip Hop, Rap and R & B. We are a Family that has visions of Entertaining the World. We are making artist known and uplifting their careers in new ways."
|
description="A Record Label that works with all Genres of Music. Specializes in Hip Hop, Rap and R & B. We are a Family that has visions of Entertaining the World. We are making artist known and uplifting their careers in new ways."
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CxL59q8tfUcPSZDT56Hr5rHLLc/uploaded-1777323889174-0kwrky4p.jpg"
|
|
||||||
imagePosition="right"
|
imagePosition="right"
|
||||||
imageClassName="border-none"
|
imageClassName="border-none"
|
||||||
buttons={[{ text: "Our Artists", href: "#features" }]}
|
buttons={[{ text: "Our Artists", href: "#features" }]}
|
||||||
@@ -74,22 +70,6 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact-faq" data-section="contact-faq">
|
|
||||||
<FaqBase
|
|
||||||
title="Support Inquiries"
|
|
||||||
description="Have a business inquiry? Send us a message and we'll get back to you."
|
|
||||||
faqs={[]}
|
|
||||||
faqsAnimation="slide-up"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={true}
|
|
||||||
/>
|
|
||||||
<EmailSignupForm
|
|
||||||
inputPlaceholder="Enter your message or email..."
|
|
||||||
buttonText="Send to Support"
|
|
||||||
onSubmit={(email) => { window.location.href = `mailto:support@ibangrecords.com?subject=Support Inquiry&body=${encodeURIComponent(email)}`; }}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplit
|
<ContactSplit
|
||||||
tag="Contact Us"
|
tag="Contact Us"
|
||||||
@@ -97,21 +77,10 @@ export default function LandingPage() {
|
|||||||
description="Get in touch for booking, inquiries, or demo submissions. "
|
description="Get in touch for booking, inquiries, or demo submissions. "
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{ variant: "gradient-bars" }}
|
background={{ variant: "gradient-bars" }}
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CxL59q8tfUcPSZDT56Hr5rHLLc/uploaded-1777365377115-6w0jl634.jpg"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CxL59q8tfUcPSZDT56Hr5rHLLc/uploaded-1777365377115-6w0jl634.jpg?_wi=1"
|
||||||
mediaAnimation="none"
|
mediaAnimation="none"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
|
||||||
<FooterMedia
|
|
||||||
logoText="I Bang Records"
|
|
||||||
columns={[
|
|
||||||
{ title: "Navigation", items: [{ label: "About", href: "#hero" }, { label: "Artists", href: "#features" }] },
|
|
||||||
{ title: "Contact", items: [{ label: "Support", href: "#contact" }] },
|
|
||||||
]}
|
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CxL59q8tfUcPSZDT56Hr5rHLLc/uploaded-1777368505901-018ujma6.jpg"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user