Merge version_1 into main #1
@@ -119,42 +119,42 @@ export default function AboutPage() {
|
||||
id: "1",
|
||||
name: "Alex Morgan",
|
||||
role: "Creative Director",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-choosing-cloths-menswear-shop_1303-30869.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-choosing-cloths-menswear-shop_1303-30869.jpg?_wi=2",
|
||||
imageAlt: "creative director professional headshot portrait",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Jordan Blake",
|
||||
role: "Brand Strategist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-with-tablet_1098-135.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-with-tablet_1098-135.jpg?_wi=2",
|
||||
imageAlt: "brand strategist professional man portrait",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Casey Rivera",
|
||||
role: "UI/UX Designer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businesswoman-touching-her-face_1098-3321.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businesswoman-touching-her-face_1098-3321.jpg?_wi=2",
|
||||
imageAlt: "ui ux designer woman professional portrait",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Taylor Kim",
|
||||
role: "Lead Developer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1702.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1702.jpg?_wi=2",
|
||||
imageAlt: "software developer man professional portrait",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Morgan Hayes",
|
||||
role: "Illustrator",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-holding-tablet_23-2149927579.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-holding-tablet_23-2149927579.jpg?_wi=2",
|
||||
imageAlt: "digital illustrator artist woman portrait",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Quinn Foster",
|
||||
role: "Project Manager",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elderly-business-woman-office-isolated_1303-21368.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elderly-business-woman-office-isolated_1303-21368.jpg?_wi=2",
|
||||
imageAlt: "project manager professional woman portrait",
|
||||
},
|
||||
]}
|
||||
@@ -173,7 +173,7 @@ export default function AboutPage() {
|
||||
title: "Strategic Discovery",
|
||||
description: "We begin by understanding your business goals, target audience, and market position. Deep research informs every creative decision we make.",
|
||||
tag: "Phase 1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-checking-notes_23-2148128334.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-checking-notes_23-2148128334.jpg?_wi=3",
|
||||
imageAlt: "creative direction visual strategy brainstorm",
|
||||
},
|
||||
{
|
||||
@@ -181,7 +181,7 @@ export default function AboutPage() {
|
||||
title: "Creative Design",
|
||||
description: "Our talented designers craft compelling visuals that resonate with your audience. Each element is purposeful and aligned with your brand vision.",
|
||||
tag: "Phase 2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-representation-blue-plastic-tableware-waste-young-woman_23-2148763387.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-representation-blue-plastic-tableware-waste-young-woman_23-2148763387.jpg?_wi=3",
|
||||
imageAlt: "digital illustration art graphic design",
|
||||
},
|
||||
{
|
||||
@@ -189,7 +189,7 @@ export default function AboutPage() {
|
||||
title: "Expert Execution",
|
||||
description: "From development to deployment, we ensure every detail is perfect. Our team works collaboratively to bring your vision to life with excellence.",
|
||||
tag: "Phase 3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-working-together-animation-studio_23-2149207983.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-working-together-animation-studio_23-2149207983.jpg?_wi=2",
|
||||
imageAlt: "creative office workspace collaboration",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -74,7 +74,7 @@ export default function ContactPage() {
|
||||
required: true,
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/people-working-together-animation-studio_23-2149207983.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/people-working-together-animation-studio_23-2149207983.jpg?_wi=3"
|
||||
imageAlt="creative office workspace collaboration"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -1,24 +1,58 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "OwnSelf Illustrations | Creative Agency & Brand Design",
|
||||
description: "Premium creative studio specializing in brand identity, website design, and digital visuals for startups and modern businesses.",
|
||||
keywords: "brand design, creative agency, web design, branding, digital design, startup design, visual identity",
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "OwnSelf Illustrations | Creative Agency",
|
||||
description: "Premium design solutions for ambitious startups and modern businesses.",
|
||||
siteName: "OwnSelf Illustrations",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/empty-meeting-office-space-enterprise-used-workers-attend-conferences_482257-115920.jpg",
|
||||
alt: "OwnSelf Illustrations - Creative Studio",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "OwnSelf Illustrations | Creative Agency",
|
||||
description: "Premium brand identity, web design, and digital visuals.",
|
||||
images: [
|
||||
"http://img.b2bpic.net/free-photo/empty-meeting-office-space-enterprise-used-workers-attend-conferences_482257-115920.jpg",
|
||||
],
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +61,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${publicSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +75,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -126,7 +126,7 @@ export default function HomePage() {
|
||||
description:
|
||||
"Complete brand systems including logos, color palettes, typography, and brand guidelines that define your unique market position.",
|
||||
tag: "Branding",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/coloful-business-card-template_23-2148549832.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/coloful-business-card-template_23-2148549832.jpg?_wi=1",
|
||||
imageAlt: "brand identity design mockup color palette",
|
||||
},
|
||||
{
|
||||
@@ -135,7 +135,7 @@ export default function HomePage() {
|
||||
description:
|
||||
"Modern, responsive websites that combine aesthetic excellence with seamless user experience and conversion optimization.",
|
||||
tag: "Web",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/travel-landing-page-with-image_23-2148361056.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/travel-landing-page-with-image_23-2148361056.jpg?_wi=1",
|
||||
imageAlt: "modern website design mockup responsive",
|
||||
},
|
||||
{
|
||||
@@ -144,7 +144,7 @@ export default function HomePage() {
|
||||
description:
|
||||
"Engaging social media content, templates, and graphics that amplify your brand voice and boost audience engagement.",
|
||||
tag: "Social",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/health-fitness-instagram-posts-collection_23-2149007527.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/health-fitness-instagram-posts-collection_23-2149007527.jpg?_wi=1",
|
||||
imageAlt: "social media design templates instagram",
|
||||
},
|
||||
{
|
||||
@@ -153,7 +153,7 @@ export default function HomePage() {
|
||||
description:
|
||||
"Eye-catching marketing materials and digital advertising designs that capture attention and drive conversions.",
|
||||
tag: "Marketing",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/flat-design-marketing-strategy-poster-template_23-2150431637.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/flat-design-marketing-strategy-poster-template_23-2150431637.jpg?_wi=1",
|
||||
imageAlt: "marketing poster design advertising creative",
|
||||
},
|
||||
{
|
||||
@@ -162,7 +162,7 @@ export default function HomePage() {
|
||||
description:
|
||||
"Strategic visual direction and consulting for campaigns, ensuring consistency and impact across all touchpoints.",
|
||||
tag: "Strategy",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-checking-notes_23-2148128334.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-checking-notes_23-2148128334.jpg?_wi=1",
|
||||
imageAlt: "creative direction visual strategy brainstorm",
|
||||
},
|
||||
{
|
||||
@@ -171,7 +171,7 @@ export default function HomePage() {
|
||||
description:
|
||||
"Premium illustrations, animations, and custom graphics that elevate your digital presence and storytelling.",
|
||||
tag: "Visual",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-representation-blue-plastic-tableware-waste-young-woman_23-2148763387.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-representation-blue-plastic-tableware-waste-young-woman_23-2148763387.jpg?_wi=1",
|
||||
imageAlt: "digital illustration art graphic design",
|
||||
},
|
||||
]}
|
||||
@@ -198,7 +198,7 @@ export default function HomePage() {
|
||||
price: "SaaS Platform",
|
||||
rating: 5,
|
||||
reviewCount: "4.9★",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/webinar-conference-social-media-stories_23-2148870959.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/webinar-conference-social-media-stories_23-2148870959.jpg?_wi=1",
|
||||
imageAlt: "saas platform branding identity design",
|
||||
},
|
||||
{
|
||||
@@ -208,7 +208,7 @@ export default function HomePage() {
|
||||
price: "E-Commerce Platform",
|
||||
rating: 5,
|
||||
reviewCount: "4.8★",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/blog-template-design_23-2149661298.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/blog-template-design_23-2149661298.jpg?_wi=1",
|
||||
imageAlt: "ecommerce website design mockup modern",
|
||||
},
|
||||
{
|
||||
@@ -218,7 +218,7 @@ export default function HomePage() {
|
||||
price: "Marketing Campaign",
|
||||
rating: 5,
|
||||
reviewCount: "5.0★",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/charity-template-design_23-2150577819.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/charity-template-design_23-2150577819.jpg?_wi=1",
|
||||
imageAlt: "social media campaign design mockup",
|
||||
},
|
||||
{
|
||||
@@ -228,7 +228,7 @@ export default function HomePage() {
|
||||
price: "Tech Startup",
|
||||
rating: 5,
|
||||
reviewCount: "4.9★",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/neon-business-cards-concept_23-2148555808.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/neon-business-cards-concept_23-2148555808.jpg?_wi=1",
|
||||
imageAlt: "tech startup brand identity design system",
|
||||
},
|
||||
]}
|
||||
@@ -259,7 +259,7 @@ export default function HomePage() {
|
||||
tag: "Brand Redesign",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/fashion-portrait-young-elegant-woman_1328-4107.jpg",
|
||||
avatarAlt: "Sarah Chen",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teammates-working-late-office_23-2148991368.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teammates-working-late-office_23-2148991368.jpg?_wi=1",
|
||||
imageAlt: "tech company office workspace modern",
|
||||
},
|
||||
{
|
||||
@@ -272,7 +272,7 @@ export default function HomePage() {
|
||||
tag: "Web Design",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/close-up-labor-union-member_23-2150969905.jpg",
|
||||
avatarAlt: "Michael Rodriguez",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/joyous-coworkers-having-fun-vibrant-office-while-reviewing-financial-graphs_482257-126650.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/joyous-coworkers-having-fun-vibrant-office-while-reviewing-financial-graphs_482257-126650.jpg?_wi=1",
|
||||
imageAlt: "startup office collaborative workspace",
|
||||
},
|
||||
{
|
||||
@@ -285,7 +285,7 @@ export default function HomePage() {
|
||||
tag: "Marketing",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/woman-talking-phone-home_23-2148990135.jpg",
|
||||
avatarAlt: "Emily Johnson",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-business-workplace-equipped-with-modern-tech-tools-serve-enterprise_482257-118685.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-business-workplace-equipped-with-modern-tech-tools-serve-enterprise_482257-118685.jpg?_wi=1",
|
||||
imageAlt: "marketing campaign strategy planning office",
|
||||
},
|
||||
{
|
||||
@@ -298,7 +298,7 @@ export default function HomePage() {
|
||||
tag: "Brand Strategy",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/smiling-successful-middle-aged-business-leader_1262-5690.jpg",
|
||||
avatarAlt: "David Park",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/team-cybercriminals-fixing-computer-system-cyberattack_482257-90449.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/team-cybercriminals-fixing-computer-system-cyberattack_482257-90449.jpg?_wi=1",
|
||||
imageAlt: "tech innovation lab office environment",
|
||||
},
|
||||
{
|
||||
@@ -311,7 +311,7 @@ export default function HomePage() {
|
||||
tag: "Full Service",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-young-businesswoman_23-2147838552.jpg",
|
||||
avatarAlt: "Jessica Lee",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-office-interior-design_23-2151826276.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-office-interior-design_23-2151826276.jpg?_wi=1",
|
||||
imageAlt: "design studio workspace creative environment",
|
||||
},
|
||||
{
|
||||
@@ -324,7 +324,7 @@ export default function HomePage() {
|
||||
tag: "Design Direction",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/contemplating-young-caucasian-man-holding-dairy-thinking_23-2148187202.jpg",
|
||||
avatarAlt: "James Wilson",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-it-department-office-used-building-machine-learning-software_482257-124290.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-it-department-office-used-building-machine-learning-software_482257-124290.jpg?_wi=1",
|
||||
imageAlt: "cloud technology infrastructure office",
|
||||
},
|
||||
]}
|
||||
@@ -345,42 +345,42 @@ export default function HomePage() {
|
||||
id: "1",
|
||||
name: "Alex Morgan",
|
||||
role: "Creative Director",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-choosing-cloths-menswear-shop_1303-30869.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-choosing-cloths-menswear-shop_1303-30869.jpg?_wi=1",
|
||||
imageAlt: "Alex Morgan",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Jordan Blake",
|
||||
role: "Brand Strategist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-with-tablet_1098-135.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-with-tablet_1098-135.jpg?_wi=1",
|
||||
imageAlt: "Jordan Blake",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Casey Rivera",
|
||||
role: "UI/UX Designer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businesswoman-touching-her-face_1098-3321.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businesswoman-touching-her-face_1098-3321.jpg?_wi=1",
|
||||
imageAlt: "Casey Rivera",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Taylor Kim",
|
||||
role: "Lead Developer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1702.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1702.jpg?_wi=1",
|
||||
imageAlt: "Taylor Kim",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Morgan Hayes",
|
||||
role: "Illustrator",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-holding-tablet_23-2149927579.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-holding-tablet_23-2149927579.jpg?_wi=1",
|
||||
imageAlt: "Morgan Hayes",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Quinn Foster",
|
||||
role: "Project Manager",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elderly-business-woman-office-isolated_1303-21368.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elderly-business-woman-office-isolated_1303-21368.jpg?_wi=1",
|
||||
imageAlt: "Quinn Foster",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -91,7 +91,7 @@ export default function PortfolioPage() {
|
||||
price: "SaaS Platform",
|
||||
rating: 5,
|
||||
reviewCount: "4.9★",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/webinar-conference-social-media-stories_23-2148870959.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/webinar-conference-social-media-stories_23-2148870959.jpg?_wi=3",
|
||||
imageAlt: "saas platform branding identity design",
|
||||
},
|
||||
{
|
||||
@@ -101,7 +101,7 @@ export default function PortfolioPage() {
|
||||
price: "E-Commerce Platform",
|
||||
rating: 5,
|
||||
reviewCount: "4.8★",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/blog-template-design_23-2149661298.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/blog-template-design_23-2149661298.jpg?_wi=3",
|
||||
imageAlt: "ecommerce website design mockup modern",
|
||||
},
|
||||
{
|
||||
@@ -111,7 +111,7 @@ export default function PortfolioPage() {
|
||||
price: "Marketing Campaign",
|
||||
rating: 5,
|
||||
reviewCount: "5.0★",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/charity-template-design_23-2150577819.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/charity-template-design_23-2150577819.jpg?_wi=3",
|
||||
imageAlt: "social media campaign design mockup",
|
||||
},
|
||||
{
|
||||
@@ -121,7 +121,7 @@ export default function PortfolioPage() {
|
||||
price: "Tech Startup",
|
||||
rating: 5,
|
||||
reviewCount: "4.9★",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/neon-business-cards-concept_23-2148555808.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/neon-business-cards-concept_23-2148555808.jpg?_wi=2",
|
||||
imageAlt: "tech startup brand identity design system",
|
||||
},
|
||||
]}
|
||||
@@ -156,7 +156,7 @@ export default function PortfolioPage() {
|
||||
tag: "Brand Redesign",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/fashion-portrait-young-elegant-woman_1328-4107.jpg",
|
||||
avatarAlt: "professional business woman portrait headshot",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teammates-working-late-office_23-2148991368.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teammates-working-late-office_23-2148991368.jpg?_wi=2",
|
||||
imageAlt: "tech company office workspace modern",
|
||||
},
|
||||
{
|
||||
@@ -168,7 +168,7 @@ export default function PortfolioPage() {
|
||||
tag: "Web Design",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/close-up-labor-union-member_23-2150969905.jpg",
|
||||
avatarAlt: "professional business man portrait headshot",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/joyous-coworkers-having-fun-vibrant-office-while-reviewing-financial-graphs_482257-126650.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/joyous-coworkers-having-fun-vibrant-office-while-reviewing-financial-graphs_482257-126650.jpg?_wi=2",
|
||||
imageAlt: "startup office collaborative workspace",
|
||||
},
|
||||
{
|
||||
@@ -180,7 +180,7 @@ export default function PortfolioPage() {
|
||||
tag: "Marketing",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/woman-talking-phone-home_23-2148990135.jpg",
|
||||
avatarAlt: "female marketing director professional portrait",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-business-workplace-equipped-with-modern-tech-tools-serve-enterprise_482257-118685.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-business-workplace-equipped-with-modern-tech-tools-serve-enterprise_482257-118685.jpg?_wi=2",
|
||||
imageAlt: "marketing campaign strategy planning office",
|
||||
},
|
||||
{
|
||||
@@ -192,7 +192,7 @@ export default function PortfolioPage() {
|
||||
tag: "Brand Strategy",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/smiling-successful-middle-aged-business-leader_1262-5690.jpg",
|
||||
avatarAlt: "male tech professional developer portrait",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/team-cybercriminals-fixing-computer-system-cyberattack_482257-90449.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/team-cybercriminals-fixing-computer-system-cyberattack_482257-90449.jpg?_wi=2",
|
||||
imageAlt: "tech innovation lab office environment",
|
||||
},
|
||||
{
|
||||
@@ -204,7 +204,7 @@ export default function PortfolioPage() {
|
||||
tag: "Full Service",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-young-businesswoman_23-2147838552.jpg",
|
||||
avatarAlt: "female design ceo professional portrait",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-office-interior-design_23-2151826276.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-office-interior-design_23-2151826276.jpg?_wi=2",
|
||||
imageAlt: "design studio workspace creative environment",
|
||||
},
|
||||
{
|
||||
@@ -216,7 +216,7 @@ export default function PortfolioPage() {
|
||||
tag: "Design Direction",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/contemplating-young-caucasian-man-holding-dairy-thinking_23-2148187202.jpg",
|
||||
avatarAlt: "male tech founder startup entrepreneur portrait",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-it-department-office-used-building-machine-learning-software_482257-124290.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-it-department-office-used-building-machine-learning-software_482257-124290.jpg?_wi=2",
|
||||
imageAlt: "cloud technology infrastructure office",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -83,7 +83,7 @@ export default function ServicesPage() {
|
||||
description:
|
||||
"Complete brand systems including logos, color palettes, typography, and brand guidelines that define your unique market position.",
|
||||
tag: "Branding",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/coloful-business-card-template_23-2148549832.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/coloful-business-card-template_23-2148549832.jpg?_wi=2",
|
||||
imageAlt: "brand identity design mockup color palette",
|
||||
},
|
||||
{
|
||||
@@ -92,7 +92,7 @@ export default function ServicesPage() {
|
||||
description:
|
||||
"Modern, responsive websites that combine aesthetic excellence with seamless user experience and conversion optimization.",
|
||||
tag: "Web",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/travel-landing-page-with-image_23-2148361056.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/travel-landing-page-with-image_23-2148361056.jpg?_wi=2",
|
||||
imageAlt: "modern website design mockup responsive",
|
||||
},
|
||||
{
|
||||
@@ -101,7 +101,7 @@ export default function ServicesPage() {
|
||||
description:
|
||||
"Engaging social media content, templates, and graphics that amplify your brand voice and boost audience engagement.",
|
||||
tag: "Social",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/health-fitness-instagram-posts-collection_23-2149007527.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/health-fitness-instagram-posts-collection_23-2149007527.jpg?_wi=2",
|
||||
imageAlt: "social media design templates instagram",
|
||||
},
|
||||
{
|
||||
@@ -110,7 +110,7 @@ export default function ServicesPage() {
|
||||
description:
|
||||
"Eye-catching marketing materials and digital advertising designs that capture attention and drive conversions.",
|
||||
tag: "Marketing",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/flat-design-marketing-strategy-poster-template_23-2150431637.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/flat-design-marketing-strategy-poster-template_23-2150431637.jpg?_wi=2",
|
||||
imageAlt: "marketing poster design advertising creative",
|
||||
},
|
||||
{
|
||||
@@ -119,7 +119,7 @@ export default function ServicesPage() {
|
||||
description:
|
||||
"Strategic visual direction and consulting for campaigns, ensuring consistency and impact across all touchpoints.",
|
||||
tag: "Strategy",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-checking-notes_23-2148128334.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-checking-notes_23-2148128334.jpg?_wi=2",
|
||||
imageAlt: "creative direction visual strategy brainstorm",
|
||||
},
|
||||
{
|
||||
@@ -128,7 +128,7 @@ export default function ServicesPage() {
|
||||
description:
|
||||
"Premium illustrations, animations, and custom graphics that elevate your digital presence and storytelling.",
|
||||
tag: "Visual",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-representation-blue-plastic-tableware-waste-young-woman_23-2148763387.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-representation-blue-plastic-tableware-waste-young-woman_23-2148763387.jpg?_wi=2",
|
||||
imageAlt: "digital illustration art graphic design",
|
||||
},
|
||||
]}
|
||||
@@ -155,7 +155,7 @@ export default function ServicesPage() {
|
||||
price: "$2,500+",
|
||||
rating: 5,
|
||||
reviewCount: "4.8★",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/webinar-conference-social-media-stories_23-2148870959.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/webinar-conference-social-media-stories_23-2148870959.jpg?_wi=2",
|
||||
imageAlt: "starter brand package",
|
||||
},
|
||||
{
|
||||
@@ -165,7 +165,7 @@ export default function ServicesPage() {
|
||||
price: "$5,000+",
|
||||
rating: 5,
|
||||
reviewCount: "4.9★",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/blog-template-design_23-2149661298.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/blog-template-design_23-2149661298.jpg?_wi=2",
|
||||
imageAlt: "complete branding package",
|
||||
},
|
||||
{
|
||||
@@ -175,7 +175,7 @@ export default function ServicesPage() {
|
||||
price: "$10,000+",
|
||||
rating: 5,
|
||||
reviewCount: "5.0★",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/charity-template-design_23-2150577819.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/charity-template-design_23-2150577819.jpg?_wi=2",
|
||||
imageAlt: "enterprise solution package",
|
||||
},
|
||||
]}
|
||||
@@ -222,7 +222,7 @@ export default function ServicesPage() {
|
||||
required: true,
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/people-working-together-animation-studio_23-2149207983.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/people-working-together-animation-studio_23-2149207983.jpg?_wi=1"
|
||||
imageAlt="Creative workspace"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
Reference in New Issue
Block a user