6 Commits

Author SHA1 Message Date
c9e4d17910 Update src/app/page.tsx 2026-06-01 07:48:53 +00:00
c54fe92868 Update src/app/page.tsx 2026-06-01 07:48:29 +00:00
feb118a851 Update src/app/page.tsx 2026-06-01 07:47:20 +00:00
dcac423dad Update src/app/styles/variables.css 2026-06-01 07:46:37 +00:00
e47191482a Update src/app/page.tsx 2026-06-01 07:46:36 +00:00
c6fcebefb9 Merge version_3 into main
Merge version_3 into main
2026-06-01 07:43:07 +00:00
2 changed files with 50 additions and 15 deletions

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import FooterMedia from '@/components/sections/footer/FooterMedia';
@@ -37,6 +37,9 @@ export default function LandingPage() {
name: "About", id: "#about"},
{
name: "Features", id: "#features"},
{
name: "Projects", id: "#projects"
},
{
name: "Products", id: "#products"},
{
@@ -50,7 +53,7 @@ export default function LandingPage() {
]}
brandName="Webild"
button={{
text: "Get Started", href: "#contact"}}
text: "Get Started", href: "#contact"}}
animateOnLoad={true}
/>
</div>
@@ -67,7 +70,7 @@ export default function LandingPage() {
{
text: "Get a Quote", href: "#contact"},
]}
imageSrc="http://img.b2bpic.net/free-photo/mockup-copy-space-blank-screen-concept_53876-120457.jpg"
imageSrc="http://img.b2bpic.net/free-photo/mockup-copy-space-blank-screen-concept_53876-120457.jpg?_wi=1"
imageAlt="modern web design desk setup"
mediaAnimation="slide-up"
avatars={[
@@ -132,6 +135,31 @@ export default function LandingPage() {
/>
</div>
<div id="projects" data-section="projects">
<ProductCardFour
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={true}
products={[
{
id: "proj1", name: "Dynamic Portfolio Site", price: "Web Development", variant: "Showcasing creative work with elegance and speed.", imageSrc: "http://img.b2bpic.net/free-photo/code-programming-coding-hacker-concept_53876-124216.jpg", imageAlt: "Dynamic Portfolio Site Screenshot"},
{
id: "proj2", name: "E-commerce Platform Redesign", price: "UI/UX & Development", variant: "Modernizing an online store for enhanced user experience and sales.", imageSrc: "http://img.b2bpic.net/free-photo/startup-business-office-desk-full-items_53876-124190.jpg", imageAlt: "E-commerce Platform Redesign Screenshot"},
{
id: "proj3", name: "SaaS Dashboard Interface", price: "UX/UI Design", variant: "Designing intuitive and powerful dashboards for data visualization.", imageSrc: "http://img.b2bpic.net/free-photo/code-programming-coding-hacker-concept_53876-124198.jpg", imageAlt: "SaaS Dashboard Interface Screenshot"},
{
id: "proj4", name: "Mobile App Landing Page", price: "Web Design", variant: "Creating engaging landing pages to drive app downloads and user acquisition.", imageSrc: "http://img.b2bpic.net/free-photo/mockup-copy-space-blank-screen-concept_53876-120457.jpg?_wi=2", imageAlt: "Mobile App Landing Page Screenshot"},
{
id: "proj5", name: "Corporate Blog Integration", price: "Content Strategy", variant: "Seamlessly integrating a blog for content marketing and audience engagement.", imageSrc: "http://img.b2bpic.net/free-photo/entrepreneurs-exchange-ideas-work_482257-90714.jpg?_wi=1", imageAlt: "Corporate Blog Integration Screenshot"},
{
id: "proj6", name: "Interactive Event Website", price: "Full-stack Development", variant: "Building dynamic websites for event registrations, schedules, and live updates.", imageSrc: "http://img.b2bpic.net/free-photo/workspace-desk-from-top-view-white-background_169016-11880.jpg", imageAlt: "Interactive Event Website Screenshot"}
]}
title="Our Latest Projects"
description="Explore some of our recent work where creativity meets functionality to deliver outstanding digital experiences."
/>
</div>
<div id="products" data-section="products">
<ProductCardFour
animationType="slide-up"
@@ -150,7 +178,7 @@ export default function LandingPage() {
{
id: "p5", name: "Restaurant Ordering", price: "$3,200", variant: "Foodie Connect", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-hand-holding-spoon_23-2149703718.jpg", imageAlt: "restaurant menu food delivery website"},
{
id: "p6", name: "Event Booking Platform", price: "$4,500", variant: "Experience Host", imageSrc: "http://img.b2bpic.net/free-photo/entrepreneurs-exchange-ideas-work_482257-90714.jpg", imageAlt: "event management booking website"},
id: "p6", name: "Event Booking Platform", price: "$4,500", variant: "Experience Host", imageSrc: "http://img.b2bpic.net/free-photo/entrepreneurs-exchange-ideas-work_482257-90714.jpg?_wi=2", imageAlt: "event management booking website"},
]}
title="Our Featured Web Solutions"
description="Explore our diverse range of website packages and services designed to meet every need."
@@ -227,15 +255,22 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactText
<ContactCTA
useInvertedBackground={true}
background={{
variant: "rotated-rays-animated"}}
text="Ready to Start Your Project? Reach Out Today!"
tag="Get in Touch"
title="Ready to Start Your Project? Reach Out Today!"
description="We're excited to hear about your next big idea. Connect with us through any of the options below."
buttons={[
{
text: "Contact Us Now", href: "mailto:info@webild.com"},
text: "Email Us", href: "mailto:info@webild.com"},
{
text: "Message on WhatsApp", href: "https://wa.me/1234567890"},
{
text: "Follow on Instagram", href: "https://instagram.com/webild"}
]}
buttonAnimation="slide-up"
/>
</div>
@@ -252,7 +287,7 @@ export default function LandingPage() {
{
label: "Services", href: "#features"},
{
label: "Portfolio", href: "#products"},
label: "Portfolio", href: "#projects"},
],
},
{

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000612e6;
--primary-cta: #15479c;
--background: #FFFFFF;
--card: #F8F8F8;
--foreground: #1A1A1A;
--primary-cta: #B8860B;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta: #333333;
--secondary-cta-text: #000612e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
--accent: #DAA520;
--background-accent: #FFFACD;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);