Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2b8cb433d9 | |||
| ba998efcae | |||
| c3e0506bec | |||
| 41e5d07bd2 | |||
| 4c58818532 | |||
| ce0ce9be1b | |||
| 2de06dddb9 |
@@ -1,55 +1,20 @@
|
||||
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";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
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"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Graphic Designer Portfolio - Branding & Visual Design", description: "Professional graphic designer with 2+ years experience in logo design, branding, social media, and print design. Based in Pakistan. View my portfolio.", keywords: "graphic designer, logo design, branding, visual identity, social media design, print design, portfolio, pakistan", metadataBase: new URL("https://designstudio.pk"),
|
||||
alternates: {
|
||||
canonical: "https://designstudio.pk"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Creative Graphic Designer Portfolio", description: "Transforming ideas into compelling visual experiences. Explore my design work.", url: "https://designstudio.pk", siteName: "Design Studio", type: "website"
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Graphic Designer Portfolio", description: "Professional design services: branding, logos, social media, print design"
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "Design Studio", description: "Creative Graphic Designer with 2+ years of expertise in branding, visual identity, and digital design."};
|
||||
|
||||
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 className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1417,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -77,22 +77,30 @@ export default function LandingPage() {
|
||||
description="Explore my curated collection of design projects across multiple disciplines and industries."
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Brand Identity System", price: "Logo Design", imageSrc: "http://img.b2bpic.net/free-vector/initial-letter-w-mono-line-logo-business-branding-template-design-inspiration_384344-1593.jpg", imageAlt: "Logo design project"
|
||||
id: "1", name: "Corporate Logo Design", price: "Logo Design", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AV0293v1HB8WM22khakRo26tWb/uploaded-1772662899610-rwvfvigi.png", imageAlt: "Corporate logo design project"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Luxury Brand Guidelines", price: "Branding", imageSrc: "http://img.b2bpic.net/free-vector/gradient-brand-manual-brochure-template_23-2149830438.jpg", imageAlt: "Branding project"
|
||||
id: "2", name: "Fashion Brand Guidelines", price: "Branding", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AV0293v1HB8WM22khakRo26tWb/uploaded-1772662899611-4fyjnfkm.png", imageAlt: "Fashion branding project"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Social Campaign Design", price: "Social Media", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=sq1w0x", imageAlt: "Social media design"
|
||||
id: "3", name: "Instagram Campaign Series", price: "Social Media", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AV0293v1HB8WM22khakRo26tWb/uploaded-1772662899611-exgxry67.png", imageAlt: "Social media campaign design"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Corporate Print Materials", price: "Print Design", imageSrc: "http://img.b2bpic.net/free-vector/modern-business-flyer-template-with-colorful-shapes_23-2147914933.jpg", imageAlt: "Print design project"
|
||||
id: "4", name: "Print Catalog Design", price: "Print Design", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AV0293v1HB8WM22khakRo26tWb/uploaded-1772662899611-k0pnol97.png", imageAlt: "Print design project"
|
||||
},
|
||||
{
|
||||
id: "5", name: "Brand Packaging Design", price: "Print Design", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AV0293v1HB8WM22khakRo26tWb/uploaded-1772662899611-m4h9j4r9.png", imageAlt: "Packaging design project"
|
||||
}
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "View All Work", href: "#portfolio" },
|
||||
{ text: "Start Your Project", href: "#contact" }
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
animationType="slide-up"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user