Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d630995ae3 | |||
| 462d3bbbc5 | |||
| 92d68dae3e | |||
| 8c57347a98 | |||
| 1714d47de5 |
@@ -32,7 +32,8 @@ export default function BlogPage() {
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Portfolio", id: "portfolio" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Pricing", id: "pricing" }
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Team", id: "team" }
|
||||
]}
|
||||
button={{ text: "Start Your Project", href: "#contact" }}
|
||||
/>
|
||||
@@ -70,7 +71,7 @@ export default function BlogPage() {
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#" },
|
||||
{ label: "Team", href: "#" },
|
||||
{ label: "Team", href: "#team" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" }
|
||||
]
|
||||
|
||||
@@ -8,6 +8,7 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia
|
||||
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import { Award, Code, Crown, DollarSign, Rocket, Send, Shield, Sparkles, Star, TrendingUp, Users, Zap } from "lucide-react";
|
||||
|
||||
@@ -32,7 +33,8 @@ export default function LandingPage() {
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Portfolio", id: "portfolio" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Pricing", id: "pricing" }
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Team", id: "team" }
|
||||
]}
|
||||
button={{
|
||||
text: "Start Your Project", href: "#contact"
|
||||
@@ -141,10 +143,10 @@ export default function LandingPage() {
|
||||
author="Sarah Mitchell, CEO at TechVenture"
|
||||
avatars={[
|
||||
{
|
||||
src: "https://img.b2bpic.net/free-photo/successful-businessman-imagines-great-career_1163-5478.jpg", alt: "Sarah Mitchell"
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/uploaded-1771451577262-6j9g1seb.jpg", alt: "Sarah Mitchell"
|
||||
},
|
||||
{
|
||||
src: "https://img.b2bpic.net/free-photo/confident-entrepreneur-satisfied-with-own-success_1163-5474.jpg", alt: "James Chen"
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/uploaded-1771451597467-k6g38fzb.jpg", alt: "James Chen"
|
||||
},
|
||||
{
|
||||
src: "https://img.b2bpic.net/free-photo/smiling-homosexual-man-official-suit-looking-camera-close-up-shot-happy-gay-getting-dressed-wedding-ceremony-standing-hotel-room-with-his-partner-background-love-emotion-concept_74855-22675.jpg", alt: "Emma Rodriguez"
|
||||
@@ -165,6 +167,27 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardTwo
|
||||
members={[
|
||||
{
|
||||
id: "1", name: "Luke", role: "Team Member", description: "Dedicated to delivering exceptional results and driving digital innovation.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/uploaded-1771451577262-6j9g1seb.jpg", imageAlt: "Luke"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Caleb", role: "Team Member", description: "Passionate about creating beautiful and functional digital experiences.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/uploaded-1771451597467-k6g38fzb.jpg", imageAlt: "Caleb"
|
||||
}
|
||||
]}
|
||||
title="Meet Our Team"
|
||||
description="The talented professionals behind Proofweb's success."
|
||||
tag="Team"
|
||||
tagIcon={Users}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardEight
|
||||
title="Simple, Transparent Pricing"
|
||||
@@ -240,7 +263,7 @@ export default function LandingPage() {
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#" },
|
||||
{ label: "Team", href: "#" },
|
||||
{ label: "Team", href: "#team" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" }
|
||||
]
|
||||
|
||||
@@ -90,6 +90,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
{ name: "Portfolio", id: "portfolio" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
@@ -112,7 +113,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#" },
|
||||
{ label: "Team", href: "#" },
|
||||
{ label: "Team", href: "#team" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" }
|
||||
]
|
||||
@@ -158,6 +159,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
{ name: "Portfolio", id: "portfolio" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
@@ -188,7 +190,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#" },
|
||||
{ label: "Team", href: "#" },
|
||||
{ label: "Team", href: "#team" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" }
|
||||
]
|
||||
@@ -233,6 +235,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
{ name: "Portfolio", id: "portfolio" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
@@ -288,7 +291,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#" },
|
||||
{ label: "Team", href: "#" },
|
||||
{ label: "Team", href: "#team" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" }
|
||||
]
|
||||
|
||||
@@ -40,6 +40,7 @@ export default function ShopPage() {
|
||||
{ name: "Portfolio", id: "portfolio" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
||||
@@ -62,7 +63,7 @@ export default function ShopPage() {
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#" },
|
||||
{ label: "Team", href: "#" },
|
||||
{ label: "Team", href: "#team" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" }
|
||||
]
|
||||
@@ -107,6 +108,7 @@ export default function ShopPage() {
|
||||
{ name: "Portfolio", id: "portfolio" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
||||
@@ -137,7 +139,7 @@ export default function ShopPage() {
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#" },
|
||||
{ label: "Team", href: "#" },
|
||||
{ label: "Team", href: "#team" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" }
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user