14 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
f7c3873680 Merge version_10_1783268788431 into main
Merge version_10_1783268788431 into main
2026-07-05 16:28:13 +00:00
d7e4ea856f Merge version_9_1783268673810 into main
Merge version_9_1783268673810 into main
2026-07-05 16:25:48 +00:00
1b87195e73 Merge version_8_1783268527655 into main
Merge version_8_1783268527655 into main
2026-07-05 16:23:29 +00:00
55f0467197 Merge version_7_1783268399527 into main
Merge version_7_1783268399527 into main
2026-07-05 16:21:18 +00:00
45d601b31f Merge version_6_1783268236095 into main
Merge version_6_1783268236095 into main
2026-07-05 16:18:53 +00:00
06a97541ce Merge version_5_1783268046406 into main
Merge version_5_1783268046406 into main
2026-07-05 16:15:40 +00:00
db2360bb77 Merge version_4_1783267826107 into main
Merge version_4_1783267826107 into main
2026-07-05 16:12:50 +00:00
bc4af9644c Merge version_3_1783267367948 into main
Merge version_3_1783267367948 into main
2026-07-05 16:04:05 +00:00
cc48cbae59 Merge version_2_1783267173241 into main
Merge version_2_1783267173241 into main
2026-07-05 16:01:50 +00:00
5 changed files with 148 additions and 81 deletions

View File

@@ -47,7 +47,7 @@ const NavbarFullscreenStatic = ({ logo, navItems, ctaButton }: NavbarFullscreenS
href="/"
className="text-xl font-medium text-black flex items-center gap-3"
>
<img src="https://storage.googleapis.com/webild/users/user_3G5derssVxjqrVSo3ygGVFCInNC/uploaded-1783268235045-8qnafq0i.png" alt="Logo" className="h-20 w-auto object-contain" />
<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>

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>
);
}