Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3889b7ff41 | |||
| e95c4a23dc | |||
| 6afb555206 | |||
| c062ddc300 | |||
| 1a479e15ae | |||
| 70755b8281 | |||
| b049dfcce8 | |||
| cb943f5fdb | |||
| 23d07236ef | |||
| cf92e81eba | |||
| d8ef2d4d30 | |||
| cefafc7659 | |||
| 303a2b4ab9 | |||
| 70d75b9168 | |||
| ca3412d7b3 |
@@ -6,20 +6,17 @@ import "@/lib/gsap-setup";
|
|||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
|
import { Space_Grotesk } from "next/font/google";
|
||||||
|
|
||||||
const halant = Halant({
|
|
||||||
variable: "--font-halant",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = { title: 'Webild Agency | Premium Web Design & Digital Strategy', description: 'Elevate your brand with Webild. We craft high-performance, custom websites and digital experiences designed to drive growth and captivate your audience.' };
|
export const metadata: Metadata = { title: 'Webild Agency | Premium Web Design & Digital Strategy', description: 'Elevate your brand with Webild. We craft high-performance, custom websites and digital experiences designed to drive growth and captivate your audience.' };
|
||||||
|
|
||||||
|
const spaceGrotesk = Space_Grotesk({
|
||||||
|
variable: "--font-space-grotesk", subsets: ["latin"],
|
||||||
|
weight: ["300", "400", "500", "600", "700"],
|
||||||
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: Readonly<{
|
||||||
@@ -28,9 +25,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body className={`${spaceGrotesk.variable} antialiased`}>
|
||||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
165
src/app/page.tsx
165
src/app/page.tsx
@@ -3,132 +3,123 @@
|
|||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
import HeroCentered from "@/components/sections/hero/HeroCentered";
|
import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonial";
|
||||||
import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven";
|
import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven";
|
||||||
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
|
||||||
import TeamCardEleven from "@/components/sections/team/TeamCardEleven";
|
import TeamCardTen from "@/components/sections/team/TeamCardTen";
|
||||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||||
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
import { Sparkles } from "lucide-react";
|
||||||
import { Sparkles, Code, Zap } from "lucide-react";
|
|
||||||
|
|
||||||
export default function BloxlyLandingPage() {
|
export default function BloxlyLandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="hover-magnetic"
|
defaultButtonVariant="hover-bubble"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="rounded"
|
borderRadius="rounded"
|
||||||
contentWidth="medium"
|
contentWidth="medium"
|
||||||
sizing="mediumLargeSizeLargeTitles"
|
sizing="mediumLargeSizeLargeTitles"
|
||||||
background="noise"
|
background="none"
|
||||||
cardStyle="glass-depth"
|
cardStyle="solid"
|
||||||
primaryButtonStyle="primary-glow"
|
primaryButtonStyle="flat"
|
||||||
secondaryButtonStyle="solid"
|
secondaryButtonStyle="solid"
|
||||||
headingFontWeight="extrabold"
|
headingFontWeight="extrabold"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<NavbarLayoutFloatingOverlay
|
<div id="nav" data-section="nav">
|
||||||
brandName="Bloxly"
|
<NavbarLayoutFloatingOverlay
|
||||||
navItems={[
|
brandName="Bloxly"
|
||||||
{ name: "Capabilities", id: "capabilities" },
|
navItems={[
|
||||||
{ name: "Product", id: "product" },
|
{ name: "Capabilities", id: "capabilities" },
|
||||||
{ name: "Manifesto", id: "manifesto" },
|
{ name: "Manifesto", id: "manifesto" },
|
||||||
{ name: "Beta", id: "beta" },
|
{ name: "Beta Access", id: "beta" },
|
||||||
]}
|
|
||||||
button={{ text: "Get Early Access", href: "#beta" }}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<div id="hero">
|
|
||||||
<HeroCentered
|
|
||||||
title="Build Roblox Experiences at the Speed of AI"
|
|
||||||
description="The enterprise-grade coding platform built for Roblox developers. Ship faster, scale smarter, and focus on the mechanics that matter."
|
|
||||||
background={{ variant: "sparkles-gradient" }}
|
|
||||||
avatars={[
|
|
||||||
{ src: "https://avatar.vercel.sh/1", alt: "Dev" },
|
|
||||||
{ src: "https://avatar.vercel.sh/2", alt: "Dev" },
|
|
||||||
{ src: "https://avatar.vercel.sh/3", alt: "Dev" }
|
|
||||||
]}
|
]}
|
||||||
avatarText="10,000+ developers joined"
|
/>
|
||||||
buttons={[{ text: "Get Started", href: "#beta" }]}
|
</div>
|
||||||
marqueeItems={[{ type: 'text-icon', text: 'AI-Native Engine', icon: Sparkles }, { type: 'text-icon', text: 'Roblox Optimized', icon: Code }, { type: 'text-icon', text: 'Instant Deployment', icon: Zap }]}
|
|
||||||
|
<div id="hero">
|
||||||
|
<HeroSplitTestimonial
|
||||||
|
title="The AI Coding Agent for Roblox Studio"
|
||||||
|
description="Accelerate your Luau development with Bloxly's precision coding engine. Generate high-performance, network-safe game logic in seconds."
|
||||||
|
background={{ variant: "gradient-bars" }}
|
||||||
|
testimonials={[]}
|
||||||
|
buttons={[{ text: "Get Beta Access", href: "#beta" }]}
|
||||||
|
mediaAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="capabilities">
|
<div id="capabilities">
|
||||||
<SocialProofOne
|
<MetricCardEleven
|
||||||
names={["Optimized Luau Engine", "Real-time Debugging", "Asset Streaming API", "Multiplayer Scaling", "Auto-documented Code"]}
|
title="AI-Native Luau Power"
|
||||||
title="Built for Scale"
|
description="Built for scale and performance, Bloxly translates your game ideas into clean, efficient Luau scripts."
|
||||||
description="Everything you need to ship world-class games."
|
metrics={[
|
||||||
textboxLayout="default"
|
{
|
||||||
|
id: "1", value: "10x", title: "Development Velocity", description: "Automated boilerplate and real-time syntax correction.", imageSrc: "https://images.unsplash.com/photo-1677442136019-21780ecad995?auto=format&fit=crop&q=80&w=800"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "2", value: "Zero", title: "Technical Debt", description: "Memory-optimized, clean, and modular code structures.", imageSrc: "https://images.unsplash.com/photo-1633356122544-f134324a6cee?auto=format&fit=crop&q=80&w=800"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="split-actions"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="features">
|
<div id="features">
|
||||||
<FeatureCardTwentySeven
|
<FeatureCardSeven
|
||||||
title="What Bloxly Does"
|
title="Precision Engine Tools"
|
||||||
description="Automate the mundane and amplify your creativity with our suite of AI-driven dev tools."
|
description="Automate the mundane, focus on the fun. Bloxly handles your backend complexity."
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
|
||||||
features={[
|
features={[
|
||||||
{ id: "f1", title: "Code Acceleration", descriptions: ["Context-aware Luau completion", "Auto-generated boilerplate code", "AI-refactored scripts"] },
|
{ title: "Game Logic Automation", description: "Instant creation of complex mechanics.", imageSrc: "https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&q=80&w=600" },
|
||||||
{ id: "f2", title: "Visual Mechanics", descriptions: ["Drag-and-drop logic nodes", "Auto-layout UI generation", "Live-preview world states"] },
|
{ title: "Smart UI Construction", description: "Responsive, high-fidelity UI layouts in seconds.", imageSrc: "https://images.unsplash.com/photo-1551033406-611cf9a28f67?auto=format&fit=crop&q=80&w=600" },
|
||||||
{ id: "f3", title: "Optimization Engine", descriptions: ["Automated bottleneck detection", "Memory footprint reduction", "Network throttling smart-fixes"] }
|
{ title: "Deep Optimization", description: "Automatic detection of bottlenecked Luau code.", imageSrc: "https://images.unsplash.com/photo-1587620962725-abab7fe55159?auto=format&fit=crop&q=80&w=600" }
|
||||||
]}
|
]}
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="product">
|
|
||||||
<ProductCardTwo
|
|
||||||
title="Product Showcase"
|
|
||||||
description="The dashboard where your next hit game comes to life."
|
|
||||||
gridVariant="asymmetric-60-wide-40-narrow"
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="split"
|
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
|
||||||
{ id: "p1", brand: "Bloxly", name: "Code Editor Pro", price: "Free", rating: 5, reviewCount: "1.2k", imageSrc: "https://images.unsplash.com/photo-1633356122544-f134324a6cee?q=80&w=800" },
|
|
||||||
{ id: "p2", brand: "Bloxly", name: "Visual Logic Suite", price: "Included", rating: 5, reviewCount: "800", imageSrc: "https://images.unsplash.com/photo-1555949963-aa90dcee9978?q=80&w=800" },
|
|
||||||
{ id: "p3", brand: "Bloxly", name: "Deployment Hub", price: "Free", rating: 5, reviewCount: "500", imageSrc: "https://images.unsplash.com/photo-1629738233306-bf105151b752?q=80&w=800" }
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="manifesto">
|
<div id="how-it-works">
|
||||||
<TeamCardEleven
|
<TeamCardTen
|
||||||
title="Manifesto: Own What You Build"
|
title="Four Steps to Success"
|
||||||
description="Powered by MultiversX, Bloxly ensures your IP stays yours. Your assets, your code, your future."
|
tag="Workflow"
|
||||||
textboxLayout="split"
|
membersAnimation="slide-up"
|
||||||
animationType="slide-up"
|
memberVariant="card"
|
||||||
useInvertedBackground={false}
|
members={[
|
||||||
groups={[
|
{ id: "1", name: "Describe your Vision" },
|
||||||
{
|
{ id: "2", name: "Generate AI Logic" },
|
||||||
id: "g1", groupTitle: "The Bloxly Standard", members: [{ id: "m1", title: "On-Chain Security", subtitle: "Verification", detail: "Every asset is anchored in trust with MultiversX integration." }]
|
{ id: "3", name: "Refine & Debug" },
|
||||||
}
|
{ id: "4", name: "Ship Experience" }
|
||||||
]}
|
]}
|
||||||
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="beta">
|
<div id="beta">
|
||||||
<ContactCenter
|
<ContactCTA
|
||||||
tag="Join the Beta"
|
tag="Get Early Access"
|
||||||
title="Shape the Future of Roblox Development"
|
tagIcon={Sparkles}
|
||||||
description="Secure your spot in the Bloxly Beta program and get exclusive access to our AI tools before the public launch."
|
title="Join the Builder Community"
|
||||||
background={{ variant: "rotated-rays-animated" }}
|
description="Closed beta. Limited seats."
|
||||||
buttonText="Join Now"
|
buttons={[{ text: "Request Access" }]}
|
||||||
useInvertedBackground={false}
|
background={{ variant: "sparkles-gradient" }}
|
||||||
/>
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<FooterBaseReveal
|
<FooterSimple
|
||||||
logoText="Bloxly"
|
columns={[
|
||||||
columns={[{ title: "Product", items: [{ label: "Features", href: "#" }, { label: "Security", href: "#" }] }, { title: "Company", items: [{ label: "About", href: "#" }, { label: "Careers", href: "#" }] }]}
|
{ title: "Bloxly", items: [{ label: "Documentation" }, { label: "API Reference" }] },
|
||||||
copyrightText="© 2024 Bloxly. All rights reserved."
|
{ title: "Community", items: [{ label: "Discord" }, { label: "Terms of Service" }] }
|
||||||
|
]}
|
||||||
|
bottomLeftText="© 2026 Strop de Aer SRL · Cluj-Napoca, Romania"
|
||||||
|
bottomRightText="Built for Roblox creators."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -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-inter-tight), sans-serif;
|
font-family: var(--font-space-grotesk), 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-inter-tight), sans-serif;
|
font-family: var(--font-space-grotesk), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user