Compare commits
7 Commits
version_36
...
version_40
| Author | SHA1 | Date | |
|---|---|---|---|
| f366b0c963 | |||
| 9b6b6e436f | |||
| c86008836b | |||
| 1693c2afb9 | |||
| aa1671600d | |||
| 342f49601d | |||
| d3125b0082 |
@@ -4,12 +4,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import HeroSplit from '@/components/sections/hero/HeroSplit';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import TextAbout from '@/components/sections/about/TextAbout';
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import EmailSignupForm from '@/components/form/EmailSignupForm';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -33,6 +31,7 @@ export default function LandingPage() {
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Artists", id: "features" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Support", id: "support" },
|
||||
]}
|
||||
brandName="I Bang Records"
|
||||
/>
|
||||
@@ -45,7 +44,8 @@ export default function LandingPage() {
|
||||
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."
|
||||
imagePosition="right"
|
||||
imageClassName="border-none"
|
||||
buttons={[{ text: "Our Artists", href: "#features" }]}
|
||||
buttons={[{ text: "Our Artists", href: "#features" }]
|
||||
}
|
||||
mediaAnimation="none"
|
||||
/>
|
||||
</div>
|
||||
@@ -85,30 +85,18 @@ export default function LandingPage() {
|
||||
/>
|
||||
</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:marcelawilliams@ibangrecords.com,eddiebang@ibangrecords.com,mikey3ang@ibangrecords.com?subject=Support Inquiry&body=${encodeURIComponent(email)}`; }}
|
||||
/>
|
||||
</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: "mailto:marcelawilliams@ibangrecords.com,eddiebang@ibangrecords.com,mikey3ang@ibangrecords.com" }] },
|
||||
<div id="support" data-section="support">
|
||||
<ContactText
|
||||
text="Need assistance? Reach out to our support team for any inquiries."
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[
|
||||
{
|
||||
text: "Send Message", onClick: () => {
|
||||
window.location.href = "mailto:marcelawilliams@ibangrecords.com?cc=mikey3ang@ibangrecords.com,eddiebang@ibangrecords.com";
|
||||
}
|
||||
}
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CxL59q8tfUcPSZDT56Hr5rHLLc/uploaded-1777371222059-9bogw9a9.jpg"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user