Compare commits
92 Commits
version_9
...
version_40
| Author | SHA1 | Date | |
|---|---|---|---|
| f366b0c963 | |||
| 9b6b6e436f | |||
| c86008836b | |||
| 1693c2afb9 | |||
| aa1671600d | |||
| 342f49601d | |||
| d3125b0082 | |||
| f6a9dd6a41 | |||
| 7e1ed0882e | |||
| 96aee25ca4 | |||
| f8d4e66ee4 | |||
| d4bb273200 | |||
| 088583478f | |||
| 1bf8cae060 | |||
| 7784ac5e1b | |||
| 26b8633ab8 | |||
| 3b45f87f41 | |||
| 007e4c9abe | |||
| 91d8133827 | |||
| a42f07932f | |||
| 01ee6404b9 | |||
| 8c8bded483 | |||
| 5785e753ab | |||
| 60a3896b18 | |||
| f807060a28 | |||
| fb0db58554 | |||
| 4ebaaacfbf | |||
| da3ff3f654 | |||
| 7390472493 | |||
| 8efe967c34 | |||
| fc061b661c | |||
| 8d0e067e3b | |||
| 341ead6f83 | |||
| 9cce63c0ba | |||
| 98665d8297 | |||
| 970c1255ae | |||
| fd75934226 | |||
| c9965d0c4c | |||
| 9dbcdf1a05 | |||
| 89c0da1ff1 | |||
| 758bf6aa94 | |||
| 7ec93fc1bb | |||
| 1326a34cd5 | |||
| d8bca1154d | |||
| 4cb058b38f | |||
| 5d52e980fc | |||
| 4c04371d67 | |||
| 179491ffda | |||
| fd5f8e47a9 | |||
| 29c9346e5e | |||
| f95c096f70 | |||
| 7428f660a6 | |||
| 08c32664bf | |||
| 10ee01e5d5 | |||
| ba11200cf6 | |||
| 307ebea1b6 | |||
| a0ec3a4e4a | |||
| 2663e8d61f | |||
| 0cf6a5c659 | |||
| a2b50925db | |||
| 63bde2bc89 | |||
| d7c529bc3d | |||
| 30ce18d378 | |||
| 4d631261bf | |||
| 9ff88fe8c7 | |||
| 6f64e685b6 | |||
| 578ad5cf8c | |||
| f1ee30c5da | |||
| bf97843c19 | |||
| d762b3748d | |||
| f9c0482c60 | |||
| 26441d7b8c | |||
| 490673f186 | |||
| 83afe1f6cb | |||
| 53dce59f26 | |||
| e478844808 | |||
| 996a7e7f19 | |||
| cd5bd89d5d | |||
| 63134dc006 | |||
| 63217c8db5 | |||
| b3aeba0324 | |||
| 7f63c0ad73 | |||
| 68c3c82af5 | |||
| 23d5557f56 | |||
| 3fe9207904 | |||
| aecc6dae3c | |||
| 5ab9c497c7 | |||
| 891a1aa330 | |||
| d2b836db72 | |||
| ee8021dca9 | |||
| 0e0c78ecff | |||
| e7b5d902a9 |
@@ -6,6 +6,8 @@ import "@/lib/gsap-setup";
|
|||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { Raleway } from "next/font/google";
|
import { Raleway } from "next/font/google";
|
||||||
|
import { Libre_Baskerville } from "next/font/google";
|
||||||
|
import { Inter_Tight } from "next/font/google";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -19,9 +21,12 @@ export const metadata: Metadata = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const raleway = Raleway({
|
|
||||||
variable: "--font-raleway",
|
|
||||||
|
const interTight = Inter_Tight({
|
||||||
|
variable: "--font-inter-tight",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
|
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
@@ -32,7 +37,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${raleway.variable} antialiased`}>
|
<body className={`${interTight.variable} antialiased`}>
|
||||||
|
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -3,16 +3,11 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
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 FaqDouble from '@/components/sections/faq/FaqDouble';
|
|
||||||
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 HeroCentered from '@/components/sections/hero/HeroCentered';
|
|
||||||
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
|
||||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
|
||||||
import TextAbout from '@/components/sections/about/TextAbout';
|
import TextAbout from '@/components/sections/about/TextAbout';
|
||||||
import { Globe, Headphones, Music, Waves, Zap } from "lucide-react";
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -35,31 +30,30 @@ 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: "Releases", id: "products" },
|
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
|
{ name: "Support", id: "support" },
|
||||||
]}
|
]}
|
||||||
brandName="I Bang Records"
|
brandName="I Bang Records"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroCentered
|
<HeroSplit
|
||||||
background={{ variant: "radial-gradient" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
title="I Bang Records"
|
title="I Bang Records"
|
||||||
description="The ultimate urban label for Rap and R&B visionaries. Shaping the sound of the streets."
|
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."
|
||||||
avatars={[
|
imagePosition="right"
|
||||||
{ src: "https://img.freepik.com/free-photo/urban-artist-recording-music_23-2149417585.jpg", alt: "Rapper profile" },
|
imageClassName="border-none"
|
||||||
{ src: "https://img.freepik.com/free-photo/cool-urban-rapper-portrait_23-2149417590.jpg", alt: "Artist profile" },
|
buttons={[{ text: "Our Artists", href: "#features" }]
|
||||||
{ src: "https://img.freepik.com/free-photo/portrait-young-urban-musician_23-2151916009.jpg", alt: "RnB artist" },
|
}
|
||||||
]}
|
mediaAnimation="none"
|
||||||
buttons={[{ text: "Discover Artists", href: "#features" }]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<TextAbout
|
<TextAbout
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Defining Modern Urban Culture"
|
title="Entertain the World while Creating not only Artist but Family in the Music Industry. "
|
||||||
tag="Our Mission"
|
tag="Our Mission"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -69,50 +63,40 @@ export default function LandingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
features={[
|
|
||||||
{ title: "Rap Legends", description: "Raw, unfiltered lyrical powerhouses.", phoneOne: { imageSrc: "https://img.freepik.com/free-photo/cool-urban-rapper-portrait_23-2149417590.jpg" }, phoneTwo: { imageSrc: "https://img.freepik.com/free-photo/artist-posing-graffiti-wall_23-2149489847.jpg" } },
|
|
||||||
{ title: "R&B Soul", description: "Deep, melodic vibes for the modern era.", phoneOne: { imageSrc: "https://img.freepik.com/free-photo/portrait-young-urban-musician_23-2151916009.jpg" }, phoneTwo: { imageSrc: "https://img.freepik.com/free-photo/urban-music-producer-studio_23-2149005458.jpg?_wi=1" } },
|
|
||||||
]}
|
|
||||||
showStepNumbers={false}
|
showStepNumbers={false}
|
||||||
title="Our Artists"
|
features={[
|
||||||
description="We house the most influential Rap and R&B voices in the scene."
|
{ title: "King Art Southside Shade", description: "", phoneOne: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CxL59q8tfUcPSZDT56Hr5rHLLc/uploaded-1777364749414-m8xbano6.jpg" }, phoneTwo: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CxL59q8tfUcPSZDT56Hr5rHLLc/uploaded-1777365027886-q4uam6x8.jpg" } },
|
||||||
/>
|
{ title: "Royal Business Mikey 3ang", description: "", phoneOne: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CxL59q8tfUcPSZDT56Hr5rHLLc/uploaded-1777364639834-5z0ydlkf.jpg" }, phoneTwo: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CxL59q8tfUcPSZDT56Hr5rHLLc/uploaded-1777365007074-pw1w6q1b.jpg" } },
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="products" data-section="products">
|
|
||||||
<ProductCardThree
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="default"
|
|
||||||
gridVariant="uniform-all-items-equal"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
products={[
|
|
||||||
{ id: "r1", name: "City Lights", price: "Stream", imageSrc: "https://img.freepik.com/free-photo/urban-music-cover-art_23-2148496904.jpg" },
|
|
||||||
{ id: "r2", name: "Concrete Soul", price: "Stream", imageSrc: "https://img.freepik.com/free-photo/urban-vinyl-release_23-2149075974.jpg" },
|
|
||||||
]}
|
]}
|
||||||
title="Artist Catalog"
|
title="Our Artists"
|
||||||
description="Explore the latest drops from our roster."
|
description="We house the most influential Rap and R&B voices in the scene. We welcome all Genres. Country - Rap/Hip-Hop - Gospel - Rock - Latin - Latin Trap - Trap - R & B - K-Pop"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplit
|
<ContactSplit
|
||||||
|
tag="Contact Us"
|
||||||
|
title="Join the Family"
|
||||||
|
description="Get in touch for booking, inquiries, or demo submissions. "
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{ variant: "gradient-bars" }}
|
background={{ variant: "gradient-bars" }}
|
||||||
tag="Contact Us"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CxL59q8tfUcPSZDT56Hr5rHLLc/uploaded-1777365377115-6w0jl634.jpg?_wi=1"
|
||||||
title="Join the Movement"
|
mediaAnimation="none"
|
||||||
description="Get in touch for booking, inquiries, or demo submissions."
|
|
||||||
imageSrc="https://img.freepik.com/free-photo/urban-music-producer-studio_23-2149005458.jpg?_wi=2"
|
|
||||||
/>
|
/>
|
||||||
</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: "#about" }, { label: "Artists", href: "#features" }] },
|
background={{ variant: "plain" }}
|
||||||
{ title: "Contact", items: [{ label: "Support", href: "#contact" }] },
|
buttons={[
|
||||||
|
{
|
||||||
|
text: "Send Message", onClick: () => {
|
||||||
|
window.location.href = "mailto:marcelawilliams@ibangrecords.com?cc=mikey3ang@ibangrecords.com,eddiebang@ibangrecords.com";
|
||||||
|
}
|
||||||
|
}
|
||||||
]}
|
]}
|
||||||
imageSrc="https://img.freepik.com/free-photo/urban-vinyl-release_23-2149075974.jpg?_wi=2"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-raleway), sans-serif;
|
font-family: var(--font-inter-tight), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-raleway), sans-serif;
|
font-family: var(--font-inter-tight), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #0a0a0a;
|
--background: #921919;
|
||||||
--card: #1a1a1a;
|
--card: #f9f9f9;
|
||||||
--foreground: #ffffff;
|
--foreground: #000612e6;
|
||||||
--primary-cta: #ff4d00;
|
--primary-cta: #15479c;
|
||||||
--primary-cta-text: #fafffb;
|
--primary-cta-text: #ffffff;
|
||||||
--secondary-cta: #333333;
|
--secondary-cta: #f9f9f9;
|
||||||
--secondary-cta-text: #001a0a;
|
--secondary-cta-text: #000612e6;
|
||||||
--accent: #555555;
|
--accent: #e2e2e2;
|
||||||
--background-accent: #222222;
|
--background-accent: #c4c4c4;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user