Compare commits
49 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 766d5ecf1a | |||
| a96e68d076 | |||
| d466fb1b61 | |||
| 30db0a48c6 | |||
| 479a0b2e0b | |||
| 9918a651d3 | |||
| 7939a4ef0f | |||
| 21cf322e77 | |||
| b81157a33b | |||
| ad4e42826e | |||
| d80dc25d4b | |||
| 674c2c7e05 | |||
| 17f6f75966 | |||
| efed7e00ae | |||
| 7334d32e93 | |||
| 07741d752c | |||
| 2ac8a2718c | |||
| 7240ec64de | |||
| 48183952b0 | |||
| 8dc98e8670 | |||
| 5faa048375 | |||
| b71dd777a7 | |||
| 3e3a8c6985 | |||
| 9c38c80a56 | |||
| 2eb92d45de | |||
| 34fec7dcf3 | |||
| ecb415bc15 | |||
| 6b7d5d0373 | |||
| 7cd5d629c4 | |||
| 7093dc3012 | |||
| 0ecdeadf5f | |||
| e117bf3d21 | |||
| bbfa4ebe87 | |||
| 5f4616df83 | |||
| c37063ec5b | |||
| cc204495a5 | |||
| c8f81aa7bb | |||
| 9ed0374e31 | |||
| dc9c5eeb35 | |||
| 1c557b1f88 | |||
| 96faa95e0a | |||
| 7d2a4800c4 | |||
| 5f5f00be59 | |||
| cf968ad0d1 | |||
| 2caeb07295 | |||
| 98c33ac0ae | |||
| f39f43d3bd | |||
| 1f7bc98b2f | |||
| 1d4207e4ad |
38
src/app/about/page.tsx
Normal file
38
src/app/about/page.tsx
Normal file
@@ -0,0 +1,38 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import { Github, Linkedin, Twitter } from "lucide-react";
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||
brandName="BlackArtTech"
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
<div className="pt-24">
|
||||
<SplitAbout
|
||||
title="Our Story"
|
||||
description="Founded on the belief that technology should empower rather than replace the artist, BlackArtTech is a hub for innovation."
|
||||
textboxLayout="default"
|
||||
bulletPoints={[
|
||||
{ title: "Mission", description: "Building the next era of creative tools." },
|
||||
{ title: "Vision", description: "A world where tech removes barriers to expression." },
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
<FooterCard
|
||||
logoText="BlackArtTech"
|
||||
socialLinks={[{ icon: Github, href: "#", ariaLabel: "Github" }, { icon: Twitter, href: "#", ariaLabel: "Twitter" }, { icon: Linkedin, href: "#", ariaLabel: "Linkedin" }]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
41
src/app/ai-design/page.tsx
Normal file
41
src/app/ai-design/page.tsx
Normal file
@@ -0,0 +1,41 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||
import { Github, Twitter, Linkedin } from "lucide-react";
|
||||
|
||||
export default function AIDesignPage() {
|
||||
return (
|
||||
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "AI Design", id: "/ai-design" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="BlackArtTech"
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll
|
||||
title="AI Design Solutions"
|
||||
description="Premium, gold-standard AI-driven design services for modern creators. Let our intelligent algorithms transform your artistic vision into high-fidelity digital reality."
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[{ text: "WhatsApp Us", href: "https://wa.me/your-number" }]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="BlackArtTech"
|
||||
socialLinks={[{ icon: Github, href: "#", ariaLabel: "Github" }, { icon: Twitter, href: "#", ariaLabel: "Twitter" }, { icon: Linkedin, href: "#", ariaLabel: "Linkedin" }]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
36
src/app/contact/page.tsx
Normal file
36
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,36 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { Github, Linkedin, Twitter } from "lucide-react";
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||
brandName="BlackArtTech"
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
<div className="pt-24">
|
||||
<ContactSplitForm
|
||||
title="Contact Us"
|
||||
description="Let's collaborate on your next creative masterpiece."
|
||||
inputs={[{ name: "name", type: "text", placeholder: "Name", required: true }, { name: "email", type: "email", placeholder: "Email", required: true }]}
|
||||
textarea={{ name: "message", placeholder: "Tell us about your creative needs or project requirements", rows: 5 }}
|
||||
buttonText="Send"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
<FooterCard
|
||||
logoText="BlackArtTech"
|
||||
socialLinks={[{ icon: Github, href: "#", ariaLabel: "Github" }, { icon: Twitter, href: "#", ariaLabel: "Twitter" }, { icon: Linkedin, href: "#", ariaLabel: "Linkedin" }]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -6,6 +6,8 @@ import "@/lib/gsap-setup";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import { Raleway } from "next/font/google";
|
||||
import { Mulish } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -20,8 +22,10 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans",
|
||||
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
@@ -33,7 +37,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${openSans.variable} antialiased`}>
|
||||
<body className={`${mulish.variable} antialiased`}>
|
||||
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
||||
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
|
||||
@@ -32,22 +32,22 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="BlackArtTech"
|
||||
button={{ text: "Get Started", href: "#contact" }}
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogo
|
||||
logoText="BlackArtTech"
|
||||
<HeroBillboardScroll
|
||||
title="Black Art Tech"
|
||||
description="Maximize your creative ROI with enterprise-grade tools built to accelerate professional production and streamline your art-to-market pipeline."
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[{ text: "Explore Platforms", href: "#products" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/3d-modern-techno-background-with-abstract-cyber-particles_1048-12198.jpg"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3E1H0csljJm0pGYMqLxSVNxfuDO/uploaded-1779341956401-7puxwe93.png"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -62,7 +62,7 @@ export default function LandingPage() {
|
||||
{ title: "Advanced Engineering", description: "Built on industry-leading stacks for maximum performance." },
|
||||
{ title: "Creative Empowerment", description: "Tools that remove technical barriers for artists." },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/ai-llm-chatbot-software-interface-pc-home-office-showing-virtual-assistant_482257-113943.jpg"
|
||||
imageSrc="https://img.b2bpic.net/premium-photo/digital-circuitry-connectivity-technology_1359-85411.jpg?id=424866438"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -74,17 +74,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "AI Art Integration", description: "Seamlessly integrate generated assets into your pipeline.", media: { imageSrc: "http://img.b2bpic.net/free-photo/notification-bell-right-side_187299-44732.jpg", imageAlt: "tech software dashboard creative" },
|
||||
title: "AI Art Integration", description: "Seamlessly integrate generated assets into your pipeline.", media: { imageSrc: "https://img.b2bpic.net/free-photo/business-people-shaking-hands-together_53876-20488.jpg?id=2825692", imageAlt: "tech software dashboard creative" },
|
||||
items: [{ text: "Smart Layers", icon: Zap }, { text: "Instant Rendering", icon: CheckCircle }],
|
||||
reverse: false,
|
||||
},
|
||||
{
|
||||
title: "Cultural Nodes", description: "Collaborate within our secure digital workspace environments.", media: { imageSrc: "http://img.b2bpic.net/free-photo/male-investor-looking-stock-trade-sales-computer-using-financial-statistics-plan-business-investment-growth-market-analyst-working-with-real-time-forex-exchange-graphs_482257-40949.jpg", imageAlt: "tech software dashboard creative" },
|
||||
title: "Cultural Nodes", description: "Collaborate within our secure digital workspace environments.", media: { imageSrc: "https://img.b2bpic.net/premium-photo/meeting-colleagues-business-partners-brainstorm-discuss-strategy-analysis-investment-scenarios-planning-new-business-projects_1016675-8320.jpg?id=372537056", imageAlt: "tech software dashboard creative" },
|
||||
items: [{ text: "Real-time Sync", icon: Star }, { text: "Version Control", icon: Award }],
|
||||
reverse: true,
|
||||
},
|
||||
{
|
||||
title: "Scalable Cloud", description: "Host your masterpieces on globally distributed infrastructures.", media: { imageSrc: "http://img.b2bpic.net/free-photo/technology-background-texture_23-2148105487.jpg", imageAlt: "tech software dashboard creative" },
|
||||
title: "Scalable Cloud", description: "Host your masterpieces on globally distributed infrastructures.", media: { imageSrc: "https://img.b2bpic.net/premium-photo/dynamic-office-meeting-with-business-team-cityscape-overlook-night-stylish-interior-design_937679-77490.jpg?id=382404609", imageAlt: "tech software dashboard creative" },
|
||||
items: [{ text: "Global CDN", icon: Shield }, { text: "Auto-Scaling", icon: Sparkles }],
|
||||
reverse: false,
|
||||
},
|
||||
@@ -101,14 +101,14 @@ export default function LandingPage() {
|
||||
gridVariant="bento-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "1", name: "ArtCore Engine", price: "$199", imageSrc: "http://img.b2bpic.net/free-photo/minimal-style-device-screen_23-2151913297.jpg" },
|
||||
{ id: "2", name: "VR Vision Lens", price: "$499", imageSrc: "http://img.b2bpic.net/free-photo/virtual-reality-headset-desk_23-2148912813.jpg" },
|
||||
{ id: "3", name: "Toolkit Prime", price: "$99", imageSrc: "http://img.b2bpic.net/free-photo/people-using-mobile-phone_53876-26374.jpg" },
|
||||
{ id: "4", name: "CloudArt Hub", price: "$29", imageSrc: "http://img.b2bpic.net/free-photo/closeup-photo-turned-digital-midi-controller_400718-29.jpg" },
|
||||
{ id: "5", name: "Generative Station", price: "$899", imageSrc: "http://img.b2bpic.net/free-photo/black-creative-person-using-pencil-draw-vase-design-canvas-easel-workshop-space-home-african-american-artist-drawing-modern-masterpiece-successful-fine-art-hobby_482257-33994.jpg" },
|
||||
{ id: "6", name: "SculptMaster Pro", price: "$349", imageSrc: "http://img.b2bpic.net/free-photo/vr-glasses-cell-phone-wooden-desk_1387-986.jpg" },
|
||||
{ id: "1", name: "ArtCore Engine", price: "$199 - High-fidelity AI core for professional rendering.", imageSrc: "http://img.b2bpic.net/free-photo/minimal-style-device-screen_23-2151913297.jpg" },
|
||||
{ id: "2", name: "VR Vision Lens", price: "$499 - Immersive 3D design and spatial prototyping tool.", imageSrc: "http://img.b2bpic.net/free-photo/virtual-reality-headset-desk_23-2148912813.jpg" },
|
||||
{ id: "3", name: "Toolkit Prime", price: "$99 - Comprehensive workflow management for creative teams.", imageSrc: "http://img.b2bpic.net/free-photo/people-using-mobile-phone_53876-26374.jpg" },
|
||||
{ id: "4", name: "CloudArt Hub", price: "$29 - Secure, scalable cloud storage for digital masterpieces.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-photo-turned-digital-midi-controller_400718-29.jpg" },
|
||||
{ id: "5", name: "Generative Station", price: "$899 - Ultimate AI generation workstation for high-demand tasks.", imageSrc: "http://img.b2bpic.net/free-photo/black-creative-person-using-pencil-draw-vase-design-canvas-easel-workshop-space-home-african-american-artist-drawing-modern-masterpiece-successful-fine-art-hobby_482257-33994.jpg" },
|
||||
{ id: "6", name: "SculptMaster Pro", price: "$349 - Advanced 3D sculpting software with tactile controls.", imageSrc: "http://img.b2bpic.net/free-photo/vr-glasses-cell-phone-wooden-desk_1387-986.jpg" },
|
||||
]}
|
||||
title="Our Solutions"
|
||||
title="Professional Tools for Modern Creators"
|
||||
description="Discover high-performance software and hardware for creators."
|
||||
/>
|
||||
</div>
|
||||
@@ -120,10 +120,10 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
plans={[
|
||||
{
|
||||
id: "basic", tag: "Starter", price: "$49", period: "/mo", description: "For individual artists starting out.", button: { text: "Choose Basic" }, featuresTitle: "Included", features: ["Core Access", "Cloud Storage", "Email Support"]
|
||||
id: "basic", tag: "Starter", price: "$49", period: "/mo", description: "For individual artists starting out.", button: { text: "Start Basic" }, featuresTitle: "Included", features: ["Core Access", "Cloud Storage", "Email Support"]
|
||||
},
|
||||
{
|
||||
id: "pro", tag: "Professional", price: "$149", period: "/mo", description: "For power users & studio designers.", button: { text: "Choose Pro" }, featuresTitle: "Everything in Basic, plus:", features: ["Advanced AI", "Collaborative Tools", "Priority Support"]
|
||||
id: "pro", tag: "Professional", price: "$149", period: "/mo", description: "For power users & studio designers.", button: { text: "Get Pro" }, featuresTitle: "Everything in Basic, plus:", features: ["Advanced AI", "Collaborative Tools", "Priority Support"]
|
||||
},
|
||||
{
|
||||
id: "ent", tag: "Enterprise", price: "$499", period: "/mo", description: "For enterprise team workflows.", button: { text: "Contact Us" }, featuresTitle: "Everything in Pro, plus:", features: ["On-premise Options", "Dedicated Agent", "SLA Support"]
|
||||
@@ -174,6 +174,7 @@ export default function LandingPage() {
|
||||
{ name: "name", type: "text", placeholder: "Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
||||
]}
|
||||
textarea={{ name: "requirements", placeholder: "Describe your creative needs or project requirements", rows: 5 }}
|
||||
buttonText="Send Message"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/empty-ai-tech-agency-workspace-providing-custom-software-development-services_482257-120228.jpg"
|
||||
/>
|
||||
|
||||
40
src/app/pricing/page.tsx
Normal file
40
src/app/pricing/page.tsx
Normal file
@@ -0,0 +1,40 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import PricingCardFive from "@/components/sections/pricing/PricingCardFive";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||
import { Github, Twitter, Linkedin } from "lucide-react";
|
||||
|
||||
export default function PricingPage() {
|
||||
return (
|
||||
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "AI Design", id: "/ai-design" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="BlackArtTech"
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
<PricingCardFive
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
title="Premium Pricing Tiers"
|
||||
description="Gold-tier design services for elite projects. Select your plan below."
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{ id: "p1", tag: "Premium Gold", price: "$999", period: "/project", description: "High-end AI design curation.", button: { text: "WhatsApp Now", href: "https://wa.me/your-number" }, featuresTitle: "Service Features", features: ["24/7 Priority Support", "Exclusive Asset Access", "Dedicated Design Lead"] },
|
||||
{ id: "p2", tag: "Pro Tier", price: "$499", period: "/project", description: "Advanced design automation.", button: { text: "WhatsApp Now", href: "https://wa.me/your-number" }, featuresTitle: "Service Features", features: ["Standard Priority", "AI Model Training", "Unlimited Revisions"] }
|
||||
]}
|
||||
/>
|
||||
<FooterCard
|
||||
logoText="BlackArtTech"
|
||||
socialLinks={[{ icon: Github, href: "#", ariaLabel: "Github" }, { icon: Twitter, href: "#", ariaLabel: "Twitter" }, { icon: Linkedin, href: "#", ariaLabel: "Linkedin" }]}
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-open-sans), sans-serif;
|
||||
font-family: var(--font-mulish), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-open-sans), sans-serif;
|
||||
font-family: var(--font-mulish), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #050505;
|
||||
--card: #121215;
|
||||
--foreground: #f8f9ff;
|
||||
--primary-cta: #ffa500;
|
||||
--background: #0a0a0a;
|
||||
--card: #171717;
|
||||
--foreground: #f5f5f5;
|
||||
--primary-cta: #d4af37;
|
||||
--primary-cta-text: #0a0a0a;
|
||||
--secondary-cta: #1c1c20;
|
||||
--secondary-cta: #c0a030;
|
||||
--secondary-cta-text: #f0f8ffe6;
|
||||
--accent: #00c8ff;
|
||||
--background-accent: #c040ff;
|
||||
--accent: #d4af37;
|
||||
--background-accent: #1a1a1a;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user