Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 6s
Build & Deploy / 🧪 QA (push) Failing after 1m24s
Build & Deploy / 🏗️ Build (push) Failing after 4m3s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🩺 Health Check (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 5s
- Refined hero sections for About, Blog, Websites, and Case Studies for a bespoke industrial entry point. - Redesigned Marker component using layered SVG paths for an organic, hand-drawn highlighter effect. - Restored technical precision in ArchitectureVisualizer with refined line thickness. - Streamlined contact page by removing generic headers and prioritizing the configurator/gateway. - Updated technical references to reflect self-hosted Gitea infrastructure. - Cleaned up unused imports and addressed linting warnings across modified pages.
21 lines
566 B
TypeScript
21 lines
566 B
TypeScript
import { Section } from "../../src/components/Section";
|
|
import { ContactForm } from "../../src/components/ContactForm";
|
|
import { AbstractCircuit } from "../../src/components/Effects";
|
|
|
|
export default function ContactPage() {
|
|
return (
|
|
<div className="flex flex-col bg-white min-h-screen overflow-hidden relative">
|
|
<AbstractCircuit />
|
|
|
|
<Section
|
|
containerVariant="wide"
|
|
effects={<></>}
|
|
className="pt-24 pb-12 md:pt-32 md:pb-20"
|
|
>
|
|
{/* Full-width Form */}
|
|
<ContactForm />
|
|
</Section>
|
|
</div>
|
|
);
|
|
}
|