Compare commits

...

5 Commits

Author SHA1 Message Date
f366b0c963 Update src/app/page.tsx 2026-04-28 10:38:00 +00:00
9b6b6e436f Update src/app/page.tsx 2026-04-28 10:37:29 +00:00
c86008836b Merge version_38 into main
Merge version_38 into main
2026-04-28 10:23:03 +00:00
1693c2afb9 Update src/app/page.tsx 2026-04-28 10:22:59 +00:00
aa1671600d Merge version_37 into main
Merge version_37 into main
2026-04-28 10:21:10 +00:00

View File

@@ -4,11 +4,10 @@ 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 EmailSignupForm from '@/components/form/EmailSignupForm'; import ContactText from '@/components/sections/contact/ContactText';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -32,6 +31,7 @@ export default function LandingPage() {
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Artists", id: "features" }, { name: "Artists", id: "features" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
{ name: "Support", id: "support" },
]} ]}
brandName="I Bang Records" brandName="I Bang Records"
/> />
@@ -44,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." 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" imagePosition="right"
imageClassName="border-none" imageClassName="border-none"
buttons={[{ text: "Our Artists", href: "#features" }]} buttons={[{ text: "Our Artists", href: "#features" }]
}
mediaAnimation="none" mediaAnimation="none"
/> />
</div> </div>
@@ -84,14 +85,18 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="support" data-section="support">
<FooterMedia <ContactText
logoText="I Bang Records" text="Need assistance? Reach out to our support team for any inquiries."
columns={[ useInvertedBackground={false}
{ title: "Navigation", items: [{ label: "About", href: "#hero" }, { label: "Artists", href: "#features" }] }, background={{ variant: "plain" }}
{ title: "Contact", items: [{ label: "Support", href: "mailto:marcelawilliams@ibangrecords.com,eddiebang@ibangrecords.com,mikey3ang@ibangrecords.com" }] }, 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> </div>
</ReactLenis> </ReactLenis>