10 Commits

Author SHA1 Message Date
6669378b48 Merge version_3 into main
Merge version_3 into main
2026-03-05 09:21:35 +00:00
afac1a70ce Update src/app/page.tsx 2026-03-05 09:21:31 +00:00
f4b6f66e20 Update src/app/layout.tsx 2026-03-05 09:21:30 +00:00
f042b03f29 Merge version_2 into main
Merge version_2 into main
2026-03-05 09:09:14 +00:00
8acf481155 Update src/app/page.tsx 2026-03-05 09:09:09 +00:00
c700cd8290 Update src/app/layout.tsx 2026-03-05 09:09:09 +00:00
cd2e21f87f Add src/app/contact/page.tsx 2026-03-05 09:09:08 +00:00
1d85ffa836 Merge version_1 into main
Merge version_1 into main
2026-03-05 08:32:56 +00:00
67f8d9dcb1 Merge version_1 into main
Merge version_1 into main
2026-03-05 08:32:06 +00:00
646d82512b Merge version_1 into main
Merge version_1 into main
2026-03-05 08:30:43 +00:00
3 changed files with 98 additions and 57 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"
@@ -220,8 +221,7 @@ export default function LandingPage() {
{
id: "1", title: "Discovery & Strategy", description: "We start by understanding your business, goals, and target audience. Through workshops and research, we develop a clear strategic foundation for all creative decisions.", media: {
imageSrc:
"http://img.b2bpic.net/free-photo/group-smiling-business-people-analyzing-reports-communicating-while-working-together-office-there-are-people-background_637285-170.jpg?_wi=2"},
items: [
"http://img.b2bpic.net/free-photo/group-smiling-business-people-analyzing-reports-communicating-while-working-together-office-there-are-people-background_637285-170.jpg?_wi=2"}, items: [
{ icon: Brain, text: "Deep market analysis" },
{ icon: Users, text: "User research & personas" },
{ icon: Target, text: "Goal alignment" },
@@ -231,8 +231,7 @@ export default function LandingPage() {
{
id: "2", title: "Design & Prototyping", description: "Our designers create stunning visual concepts and interactive prototypes. We iterate based on feedback to ensure the design perfectly captures your brand essence.", media: {
imageSrc:
"http://img.b2bpic.net/free-photo/businessmen-hands-wooden-table-with-documents-drafts_176420-368.jpg?_wi=2"},
items: [
"http://img.b2bpic.net/free-photo/businessmen-hands-wooden-table-with-documents-drafts_176420-368.jpg?_wi=2"}, items: [
{ icon: Palette, text: "Brand visual design" },
{ icon: LayoutGrid, text: "UX/UI design" },
{ icon: Figma, text: "Interactive prototypes" },
@@ -242,8 +241,7 @@ export default function LandingPage() {
{
id: "3", title: "Development & Testing", description: "Using modern technologies and best practices, our developers build robust, scalable solutions. Rigorous testing ensures quality, performance, and security.", media: {
imageSrc:
"http://img.b2bpic.net/free-photo/working-code_1098-19858.jpg?_wi=2"},
items: [
"http://img.b2bpic.net/free-photo/working-code_1098-19858.jpg?_wi=2"}, items: [
{ icon: Code, text: "Clean, scalable code" },
{ icon: Zap, text: "Performance optimization" },
{ icon: Lock, text: "Security & compliance" },
@@ -253,8 +251,7 @@ export default function LandingPage() {
{
id: "4", title: "Launch & Optimize", description: "We carefully deploy your solution and monitor performance. Ongoing optimization and analytics-driven improvements ensure sustained success.", media: {
imageSrc:
"http://img.b2bpic.net/free-vector/rocket-clouds-striped_25030-38450.jpg?_wi=2"},
items: [
"http://img.b2bpic.net/free-vector/rocket-clouds-striped_25030-38450.jpg?_wi=2"}, items: [
{ icon: Rocket, text: "Strategic deployment" },
{ icon: BarChart3, text: "Analytics & reporting" },
{ icon: RefreshCw, text: "Continuous improvement" },
@@ -278,8 +275,8 @@ export default function LandingPage() {
background={{ variant: "plain" }}
useInvertedBackground={false}
buttons={[
{ text: "Start Your Project", href: "#contact-form" },
{ text: "Schedule Consultation", href: "#" },
{ text: "Get Free Audit", href: "/contact" },
{ text: "Book Discovery Call", href: "/contact" },
]}
ariaLabel="Contact call-to-action section"
/>