25 Commits

Author SHA1 Message Date
06050e76dc Merge version_13_1783269508833 into main
Merge version_13_1783269508833 into main
2026-07-05 16:39:48 +00:00
kudinDmitriyUp
1a47396684 Bob AI: Added top padding to contact form to avoid overlap with navb 2026-07-05 16:39:00 +00:00
f5899dc5a3 Merge version_12_1783269259693 into main
Merge version_12_1783269259693 into main
2026-07-05 16:35:45 +00:00
kudinDmitriyUp
cb92f464f1 Bob AI: Increased the size of the logo image in the navbar. 2026-07-05 16:34:57 +00:00
19ff6e38e4 Merge version_11_1783269141683 into main
Merge version_11_1783269141683 into main
2026-07-05 16:33:34 +00:00
kudinDmitriyUp
432d1e3380 Bob AI: make navbar logo bigger 2026-07-05 16:32:47 +00:00
f7c3873680 Merge version_10_1783268788431 into main
Merge version_10_1783268788431 into main
2026-07-05 16:28:13 +00:00
kudinDmitriyUp
5c1c475950 Bob AI: Remove moving images from hero section 2026-07-05 16:27:25 +00:00
d7e4ea856f Merge version_9_1783268673810 into main
Merge version_9_1783268673810 into main
2026-07-05 16:25:48 +00:00
kudinDmitriyUp
13036c0b6c Bob AI: Removed the specified image from the hero section. 2026-07-05 16:25:03 +00:00
1b87195e73 Merge version_8_1783268527655 into main
Merge version_8_1783268527655 into main
2026-07-05 16:23:29 +00:00
kudinDmitriyUp
944d2337ef Bob AI: Make the logo bigger in the navbar 2026-07-05 16:22:42 +00:00
55f0467197 Merge version_7_1783268399527 into main
Merge version_7_1783268399527 into main
2026-07-05 16:21:18 +00:00
kudinDmitriyUp
cae3f9d77d Bob AI: Make top header white and logo text black 2026-07-05 16:20:33 +00:00
45d601b31f Merge version_6_1783268236095 into main
Merge version_6_1783268236095 into main
2026-07-05 16:18:53 +00:00
kudinDmitriyUp
c1105f44ef Bob AI: Added logo image and updated header text to Noor and Noir St 2026-07-05 16:18:05 +00:00
06a97541ce Merge version_5_1783268046406 into main
Merge version_5_1783268046406 into main
2026-07-05 16:15:40 +00:00
kudinDmitriyUp
c717bfc62e Bob AI: Made the What We Do header larger, centered, and added a glo 2026-07-05 16:14:52 +00:00
db2360bb77 Merge version_4_1783267826107 into main
Merge version_4_1783267826107 into main
2026-07-05 16:12:50 +00:00
kudinDmitriyUp
69b1e57af6 Bob AI: Replaced services section with a custom typographic layout 2026-07-05 16:12:01 +00:00
bc4af9644c Merge version_3_1783267367948 into main
Merge version_3_1783267367948 into main
2026-07-05 16:04:05 +00:00
kudinDmitriyUp
861acaa707 Bob AI: Remove the team section ('meet our experts') and all its con 2026-07-05 16:03:30 +00:00
cc48cbae59 Merge version_2_1783267173241 into main
Merge version_2_1783267173241 into main
2026-07-05 16:01:50 +00:00
kudinDmitriyUp
2068e174ac Bob AI: fix build errors (attempt 1) 2026-07-05 16:01:06 +00:00
kudinDmitriyUp
37d21cd268 Bob AI: Removed image from Elias Noor in team section 2026-07-05 16:00:04 +00:00
12 changed files with 383 additions and 225 deletions

View File

@@ -42,7 +42,7 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFullscreenStatic
logo="Noor & Noir Studio"
logo="Noor and Noir Studio"
ctaButton={{
text: "Get in touch",
href: "/contact",

View File

@@ -41,13 +41,14 @@ const NavbarFullscreenStatic = ({ logo, navItems, ctaButton }: NavbarFullscreenS
}, [menuOpen]);
return (
<nav data-section="navbar" className="absolute inset-0 z-1000 pointer-events-none">
<div className="absolute z-10 top-5 left-1/2 -translate-x-1/2 flex items-center justify-between w-content-width pointer-events-auto">
<nav data-section="navbar" className="absolute top-0 left-0 w-full z-1000 bg-white py-5 pointer-events-auto">
<div className="mx-auto flex items-center justify-between w-content-width">
<a
href="/"
className="text-xl font-medium text-background"
className="text-xl font-medium text-black flex items-center gap-3"
>
{logo}
<img src="https://storage.googleapis.com/webild/users/user_3G5derssVxjqrVSo3ygGVFCInNC/uploaded-1783268235045-8qnafq0i.png" alt="Logo" className="h-28 w-auto object-contain" />
<span>{logo}</span>
</a>
<div className="flex items-center gap-2 xl:gap-3 2xl:gap-4">

View File

@@ -1,87 +1,22 @@
import ContactCta from '@/components/sections/contact/ContactCta';
import ContactSplitFormParallax from '@/components/sections/contact/ContactSplitFormParallax';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
// AUTO-GENERATED shell by per-section-migrate.
// Section bodies live in the sibling sections/ folder (one file per section).
// Edit those section files directly. Non-block content (wrappers,
// non-inlinable sections) is preserved inline; extracted section blocks
// become component refs.
export default function ContactPage() {
import React from 'react';
import ContactFormSection from './ContactPage/sections/ContactForm';
import ContactSection from './ContactPage/sections/Contact';
import FaqSection from './ContactPage/sections/Faq';
export default function ContactPage(): React.JSX.Element {
return (
<>
<div id="contact-form" data-section="contact-form">
<SectionErrorBoundary name="contact-form">
<ContactCta
tag="Email us"
text="Get in touch at noorandnoirstudio@gmail.com"
primaryButton={{
text: "Copy Email",
href: "#",
}}
secondaryButton={{
text: "Inquire",
href: "mailto:noorandnoirstudio@gmail.com",
}}
textAnimation="fade"
/>
</SectionErrorBoundary>
</div>
<>
<ContactFormSection />
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<ContactSplitFormParallax
tag="Inquiry"
title="Start a conversation"
description="Fill out the form below and we will get back to you within 24 hours."
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Name",
required: true,
},
{
name: "email",
type: "email",
placeholder: "Email Address",
required: true,
},
]}
textarea={{
name: "message",
placeholder: "Tell us about your project",
rows: 4,
required: true,
}}
buttonText="Send Inquiry"
imageSrc="http://img.b2bpic.net/free-photo/3d-grunge-concrete-interior-with-spotlights_1048-16924.jpg"
textAnimation="fade"
/>
</SectionErrorBoundary>
</div>
<ContactSection />
<div id="faq" data-section="faq">
<SectionErrorBoundary name="faq">
<FaqSplitMedia
tag="FAQ"
title="Common Questions"
description="Everything you need to know about working with us."
items={[
{
question: "What is your typical turnaround time?",
answer: "Most branding projects take 4-6 weeks, while web builds vary based on complexity.",
},
{
question: "Do you offer ongoing support?",
answer: "Yes, we offer maintenance and design retainers for select long-term partners.",
},
{
question: "Where are you based?",
answer: "We are a digital-first agency with a distributed team across major creative hubs.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/dark-textured-stone-surface-with-dramatic-lighting_84443-73709.jpg"
textAnimation="fade"
/>
</SectionErrorBoundary>
</div>
<FaqSection />
</>
);
}

View File

@@ -0,0 +1,43 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "contact" section.
import React from 'react';
import ContactSplitFormParallax from '@/components/sections/contact/ContactSplitFormParallax';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ContactSection(): React.JSX.Element {
return (
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<ContactSplitFormParallax
tag="Inquiry"
title="Start a conversation"
description="Fill out the form below and we will get back to you within 24 hours."
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Name",
required: true,
},
{
name: "email",
type: "email",
placeholder: "Email Address",
required: true,
},
]}
textarea={{
name: "message",
placeholder: "Tell us about your project",
rows: 4,
required: true,
}}
buttonText="Send Inquiry"
imageSrc="http://img.b2bpic.net/free-photo/3d-grunge-concrete-interior-with-spotlights_1048-16924.jpg"
textAnimation="fade"
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,53 @@
/* eslint-disable */
// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body
import ScrollReveal from "@/components/ui/ScrollReveal";
import TextAnimation from "@/components/ui/TextAnimation";
import Button from "@/components/ui/Button";
const primaryButton = {
text: "Copy Email",
href: "#"
};
const secondaryButton = {
text: "Inquire",
href: "mailto:noorandnoirstudio@gmail.com"
};
const ContactFormInline = () => {
return (
<section aria-label="Contact section" className="pt-48 pb-20">
<div className="w-content-width mx-auto">
<ScrollReveal variant="fade-blur">
<div className="flex flex-col items-center gap-8 md:gap-10 py-20 px-8 rounded card">
<div className="flex flex-col items-center gap-2">
<div className="px-3 py-1 mb-1 text-sm card rounded w-fit">
<p>{"Email us"}</p>
</div>
<TextAnimation
text={"Get in touch at noorandnoirstudio@gmail.com"}
variant={"fade"}
gradientText={true}
tag="h2"
className="md:max-w-8/10 text-5xl 2xl:text-6xl leading-[1.15] font-semibold text-center text-balance"
/>
<div className="flex flex-wrap justify-center gap-3 mt-2 md:mt-3">
<Button text={primaryButton.text} href={primaryButton.href} variant="primary" />
<Button text={secondaryButton.text} href={secondaryButton.href} variant="secondary" animationDelay={0.1} />
</div>
</div>
</div>
</ScrollReveal>
</div>
</section>
);
};
export default function ContactFormSection() {
return (
<div data-webild-section="contact-form" data-section="contact-form" id="contact-form">
<ContactFormInline />
</div>
);
}

View File

@@ -0,0 +1,36 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "faq" section.
import React from 'react';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function FaqSection(): React.JSX.Element {
return (
<div id="faq" data-section="faq">
<SectionErrorBoundary name="faq">
<FaqSplitMedia
tag="FAQ"
title="Common Questions"
description="Everything you need to know about working with us."
items={[
{
question: "What is your typical turnaround time?",
answer: "Most branding projects take 4-6 weeks, while web builds vary based on complexity.",
},
{
question: "Do you offer ongoing support?",
answer: "Yes, we offer maintenance and design retainers for select long-term partners.",
},
{
question: "Where are you based?",
answer: "We are a digital-first agency with a distributed team across major creative hubs.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/dark-textured-stone-surface-with-dramatic-lighting_84443-73709.jpg"
textAnimation="fade"
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -1,147 +1,25 @@
import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay';
import ContactCta from '@/components/sections/contact/ContactCta';
import FeaturesDetailedCards from '@/components/sections/features/FeaturesDetailedCards';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import TeamGlassCards from '@/components/sections/team/TeamGlassCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
// AUTO-GENERATED shell by per-section-migrate.
// Section bodies live in the sibling sections/ folder (one file per section).
// Edit those section files directly. Non-block content (wrappers,
// non-inlinable sections) is preserved inline; extracted section blocks
// become component refs.
export default function HomePage() {
import React from 'react';
import HeroSection from './HomePage/sections/Hero';
import AboutSection from './HomePage/sections/About';
import CtaSection from './HomePage/sections/Cta';
import ServicesSection from './HomePage/sections/Services';export default function HomePage(): React.JSX.Element {
return (
<>
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroBillboardCarousel
tag="Noor & Noir"
title="Noor. Noir."
description=" "
primaryButton={{
text: "View Work",
href: "#services",
}}
secondaryButton={{
text: "Contact",
href: "/contact",
}}
items={[
{
imageSrc: "http://img.b2bpic.net/free-photo/liquid-marbling-paint-texture-background-fluid-painting-abstract-texture-intensive-color-mix-wallpaper_1258-99503.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/3d-wooden-interior-with-spotlights-shining-down_1048-18961.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/abstract-textured-backgound_1258-30612.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/black-concrete-wall_53876-92805.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/beige-textured-fabric-background-with-design-space_53876-133356.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/monochrome-dark-gray-stucco_1194-6912.jpg",
},
]}
textAnimation="fade"
/>
</SectionErrorBoundary>
</div>
<>
<HeroSection />
<ServicesSection />
<div id="services" data-section="services">
<SectionErrorBoundary name="services">
<FeaturesDetailedCards
tag="Expertise"
title="What we do"
description="We balance clarity with depth."
items={[
{
title: "Web Design",
description: "Custom layouts and interaction design built around content, not templates.",
tags: [
"UX",
"UI",
"Creative",
],
imageSrc: "http://img.b2bpic.net/free-photo/abstract-smooth-brown-wall-background-layout-design-studio-room-web-template-business-report-with-smooth-circle-gradient-color_1258-71972.jpg",
},
{
title: "Brand & Identity",
description: "Type systems, color, and voice that define your presence.",
tags: [
"Strategy",
"Visuals",
"Voice",
],
imageSrc: "http://img.b2bpic.net/free-photo/abstract-luxury-plain-blur-grey-black-gradient-used-as-background-studio-wall-display-your-products_1258-52733.jpg",
},
{
title: "Development",
description: "Fast, accessible builds handed over clean.",
tags: [
"Code",
"Perf",
"Delivery",
],
imageSrc: "http://img.b2bpic.net/free-photo/dark-grunge-texture_1048-4055.jpg",
},
]}
textAnimation="fade"
/>
</SectionErrorBoundary>
</div>
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<AboutMediaOverlay
tag="Our Philosophy"
title="The Duality of Design"
description="We believe the most compelling experiences exist at the intersection of shadow and light—minimalist precision meets evocative storytelling."
imageSrc="http://img.b2bpic.net/free-photo/dark-smoky-room-with-concrete-floor-dramatic-lighting_84443-83704.jpg"
textAnimation="fade"
/>
</SectionErrorBoundary>
</div>
<AboutSection />
<div id="team" data-section="team">
<SectionErrorBoundary name="team">
<TeamGlassCards
tag="The Studio"
title="Visionaries behind the lens"
description="A collective of creative thinkers focused on digital craftsmanship."
members={[
{
name: "Elias Noor",
role: "Creative Director",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-portrait-with-flowers_23-2148830424.jpg",
},
{
name: "Sarah Noir",
role: "Lead Designer",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-albino-woman_23-2150283438.jpg",
},
]}
textAnimation="fade"
/>
</SectionErrorBoundary>
</div>
<div id="cta" data-section="cta">
<SectionErrorBoundary name="cta">
<ContactCta
tag="Let's talk"
text="Have a project in mind? We'd love to hear about it."
primaryButton={{
text: "Get in touch",
href: "/contact",
}}
secondaryButton={{
text: "Our process",
href: "#services",
}}
textAnimation="fade"
/>
</SectionErrorBoundary>
</div>
<CtaSection />
</>
);
}
}

View File

@@ -0,0 +1,22 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "about" section.
import React from 'react';
import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function AboutSection(): React.JSX.Element {
return (
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<AboutMediaOverlay
tag="Our Philosophy"
title="The Duality of Design"
description="We believe the most compelling experiences exist at the intersection of shadow and light—minimalist precision meets evocative storytelling."
imageSrc="http://img.b2bpic.net/free-photo/dark-smoky-room-with-concrete-floor-dramatic-lighting_84443-83704.jpg"
textAnimation="fade"
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,28 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "cta" section.
import React from 'react';
import ContactCta from '@/components/sections/contact/ContactCta';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function CtaSection(): React.JSX.Element {
return (
<div id="cta" data-section="cta">
<SectionErrorBoundary name="cta">
<ContactCta
tag="Let's talk"
text="Have a project in mind? We'd love to hear about it."
primaryButton={{
text: "Get in touch",
href: "/contact",
}}
secondaryButton={{
text: "Our process",
href: "#services",
}}
textAnimation="fade"
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,30 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "hero" section.
import React from 'react';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HeroSection(): React.JSX.Element {
return (
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroBillboardCarousel
tag="Noor & Noir"
title="Noor. Noir."
description=" "
primaryButton={{
text: "View Work",
href: "#services",
}}
secondaryButton={{
text: "Contact",
href: "/contact",
}}
items={[]}
textAnimation="fade"
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,64 @@
import React from 'react';
import TextAnimation from '@/components/ui/TextAnimation';
import ScrollReveal from '@/components/ui/ScrollReveal';
export default function ServicesSection() {
return (
<section id="services" data-webild-section="services" className="relative w-full py-24 md:py-32 bg-background">
<div className="w-content-width mx-auto">
{/* Header */}
<div className="max-w-4xl mx-auto text-center flex flex-col items-center">
<ScrollReveal variant="slide-up">
<span className="text-2xl md:text-3xl font-bold text-primary-cta uppercase tracking-widest [text-shadow:0_0_20px_var(--primary-cta)]">
What we do
</span>
</ScrollReveal>
<TextAnimation
text="Custom layouts and interaction design built around content"
variant="slide-up"
tag="h2"
className="mt-6 text-4xl md:text-5xl lg:text-6xl font-serif text-foreground leading-tight"
gradientText={false}
/>
<ScrollReveal variant="slide-up" delay={0.2}>
<p className="mt-6 text-lg md:text-xl text-foreground/80 font-sans max-w-3xl mx-auto leading-relaxed">
Three disciplines, one team design, code, and identity working from the same brief instead of handed off between departments.
</p>
</ScrollReveal>
</div>
{/* Services Grid */}
<div className="mt-20 grid grid-cols-1 md:grid-cols-3 divide-y md:divide-y-0 md:divide-x divide-foreground/10 border-t border-foreground/10">
{/* Service 1 */}
<ScrollReveal variant="slide-up" delay={0.3} className="py-8 md:py-12 md:px-8 first:md:pl-0 last:md:pr-0 flex flex-col">
<span className="text-sm font-medium text-primary-cta mb-6">I.</span>
<h3 className="text-2xl md:text-3xl font-serif text-foreground mb-4">Web Design</h3>
<p className="text-base text-foreground/70 font-sans leading-relaxed">
Custom layouts and interaction design built around your content, not page builder's defaults.
</p>
</ScrollReveal>
{/* Service 2 */}
<ScrollReveal variant="slide-up" delay={0.4} className="py-8 md:py-12 md:px-8 first:md:pl-0 last:md:pr-0 flex flex-col">
<span className="text-sm font-medium text-primary-cta mb-6">II.</span>
<h3 className="text-2xl md:text-3xl font-serif text-foreground mb-4">Brand & Identity</h3>
<p className="text-base text-foreground/70 font-sans leading-relaxed">
Type systems, colour, and voice the details that make your brand unmistakably yours.
</p>
</ScrollReveal>
{/* Service 3 */}
<ScrollReveal variant="slide-up" delay={0.5} className="py-8 md:py-12 md:px-8 first:md:pl-0 last:md:pr-0 flex flex-col">
<span className="text-sm font-medium text-primary-cta mb-6">III.</span>
<h3 className="text-2xl md:text-3xl font-serif text-foreground mb-4">Development</h3>
<p className="text-base text-foreground/70 font-sans leading-relaxed">
Reliable, accessible builds on modern tooling, handed over clean.
</p>
</ScrollReveal>
</div>
</div>
</section>
);
}

View File

@@ -0,0 +1,68 @@
import ImageOrVideo from "@/components/ui/ImageOrVideo";
import TextAnimation from "@/components/ui/TextAnimation";
import GridOrCarousel from "@/components/ui/GridOrCarousel";
import ScrollReveal from "@/components/ui/ScrollReveal";
type TeamMember = {
name: string;
role: string;
imageSrc?: string;
};
export default function TeamSection() {
const team: TeamMember[] = [
{
name: "Alex Rivera",
role: "Principal Architect",
},
{
name: "Jordan Lee",
role: "Lead Designer",
},
{
name: "Taylor Smith",
role: "Project Manager",
},
{
name: "Casey Jones",
role: "Interior Specialist",
}
];
return (
<section id="team" aria-label="Team section" className="">
<div className="flex flex-col gap-8 w-content-width mx-auto">
<div className="flex flex-col items-center gap-2">
<div className="px-3 py-1 mb-1 text-sm card rounded w-fit">
<p>Team</p>
</div>
<TextAnimation
text="Meet Our Experts"
variant="slide-up"
gradientText={true}
tag="h2"
className="text-5xl md:text-6xl font-semibold text-center text-balance"
/>
</div>
<ScrollReveal variant="slide-up">
<GridOrCarousel>
{team.map((member, i) => (
<div key={i} className="flex flex-col items-center gap-4 p-6 card rounded text-center">
{member.imageSrc && (
<div className="w-32 h-32 rounded-full overflow-hidden mb-2">
<ImageOrVideo imageSrc={member.imageSrc} className="w-full h-full object-cover" />
</div>
)}
<div className="flex flex-col gap-1">
<h3 className="text-xl font-semibold">{member.name}</h3>
<p className="text-accent">{member.role}</p>
</div>
</div>
))}
</GridOrCarousel>
</ScrollReveal>
</div>
</section>
);
}