Merge version_2 into main #4

Merged
bender merged 3 commits from version_2 into main 2026-03-05 09:09:14 +00:00
3 changed files with 96 additions and 51 deletions

84
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,84 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterCard from "@/components/sections/footer/FooterCard";
import {
Twitter,
Linkedin,
Github,
Instagram,
Mail,
} from "lucide-react";
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="layered-gradient"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Webild Studio"
navItems={[
{ name: "About", id: "about" },
{ name: "Services", id: "services" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Process", id: "process" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Home", href: "/" }}
animateOnLoad={true}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Get in Touch"
tagIcon={Mail}
tagAnimation="slide-up"
title="Let's Start a Conversation"
description="Have a project in mind? We'd love to hear about it. Get in touch with our team and let's discuss how we can help transform your digital vision into reality."
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/cheerful-team-working-with-papers-gadgets_23-2147668783.jpg"
imageAlt="Contact us team"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="your@email.com"
buttonText="Send Message"
termsText="We respect your privacy. Unsubscribe at any time."
onSubmit={(email) => console.log("Contact form submitted:", email)}
ariaLabel="Contact us form section"
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Webild Studio"
copyrightText="© 2025 Webild Studio. All rights reserved."
socialLinks={[
{ icon: Twitter, href: "https://twitter.com", ariaLabel: "Twitter" },
{
icon: Linkedin,
href: "https://linkedin.com", ariaLabel: "LinkedIn"},
{ icon: Github, href: "https://github.com", ariaLabel: "GitHub" },
{
icon: Instagram,
href: "https://instagram.com", ariaLabel: "Instagram"},
]}
ariaLabel="Site footer with social links"
/>
</div>
</ThemeProvider>
);
}

View File

@@ -1,55 +1,16 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Creative Web Agency | Webild Studio", description: "Award-winning creative web agency delivering stunning digital experiences. Expert design, development, and strategy for transformative results.", keywords: "web agency, web design, web development, digital agency, creative studio, UI/UX design", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Creative Web Agency | Webild Studio", description: "Award-winning creative web agency delivering stunning digital experiences.", siteName: "Webild Studio", type: "website", images: [
{
url: "http://img.b2bpic.net/free-vector/charts-set-pink-dashboard-user-panel_23-2148381985.jpg", alt: "Webild Studio - Creative Web Agency"},
],
},
twitter: {
card: "summary_large_image", title: "Creative Web Agency | Webild Studio", description: "Award-winning creative web agency delivering stunning digital experiences.", images: [
"http://img.b2bpic.net/free-vector/charts-set-pink-dashboard-user-panel_23-2148381985.jpg"],
},
};
title: "Webild Studio - Creative Web Agency", description: "Transform your digital presence with stunning websites and digital experiences"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1378,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -58,8 +58,9 @@ export default function LandingPage() {
{ name: "Services", id: "services" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Process", id: "process" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Start Project", href: "#contact" }}
button={{ text: "Start Project", href: "/contact" }}
animateOnLoad={true}
/>
</div>
@@ -79,7 +80,7 @@ export default function LandingPage() {
tagIcon={Sparkles}
tagAnimation="slide-up"
buttons={[
{ text: "Get Started", href: "#contact" },
{ text: "Get Started", href: "/contact" },
{ text: "View Portfolio", href: "#services" },
]}
buttonAnimation="slide-up"
@@ -278,8 +279,8 @@ export default function LandingPage() {
background={{ variant: "plain" }}
useInvertedBackground={false}
buttons={[
{ text: "Start Your Project", href: "#contact-form" },
{ text: "Schedule Consultation", href: "#" },
{ text: "Start Your Project", href: "/contact" },
{ text: "Schedule Consultation", href: "/contact" },
]}
ariaLabel="Contact call-to-action section"
/>
@@ -304,4 +305,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}