Merge version_1 into main #3

Merged
bender merged 2 commits from version_1 into main 2026-04-02 19:58:04 +00:00
2 changed files with 6 additions and 12 deletions

View File

@@ -26,9 +26,6 @@ export default function AboutPage() {
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
@@ -55,7 +52,7 @@ export default function AboutPage() {
layout="section"
title="Our Values"
sections={[
{ heading: "Design Philosophy", content: { text: "We believe in minimalism, clarity, and bold, futuristic aesthetics." } },
{ heading: "Design Philosophy", content: { type: "paragraph", text: "We believe in minimalism, clarity, and bold, futuristic aesthetics." } },
]}
/>
</div>
@@ -63,7 +60,7 @@ export default function AboutPage() {
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "Pages", items: [{ label: "Home", href: "/" }, { label: "Portfolio", href: "/portfolio" }, { label: "Shop", href: "/shop" }] },
{ title: "Pages", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
{ title: "Services", items: [{ label: "Logos", href: "/services" }, { label: "Web Dev", href: "/services" }] },
{ title: "Contact", items: [{ label: "Email", href: "mailto:sa22072004@gmail.com" }, { label: "WhatsApp", href: "https://wa.me/923410184098" }] },
]}
@@ -73,4 +70,4 @@ export default function AboutPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -26,9 +26,6 @@ export default function ContactPage() {
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
@@ -50,7 +47,7 @@ export default function ContactPage() {
layout="section"
title="Get in Touch"
sections={[
{ heading: "Inquiries", content: { items: ["Email us for quotes.", "DM on social for quick chat."] } },
{ heading: "Inquiries", content: { type: "list", items: ["Email us for quotes.", "DM on social for quick chat."] } },
]}
/>
</div>
@@ -58,7 +55,7 @@ export default function ContactPage() {
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "Pages", items: [{ label: "Home", href: "/" }, { label: "Portfolio", href: "/portfolio" }, { label: "Shop", href: "/shop" }] },
{ title: "Pages", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
{ title: "Services", items: [{ label: "Logos", href: "/services" }, { label: "Web Dev", href: "/services" }] },
{ title: "Contact", items: [{ label: "Email", href: "mailto:sa22072004@gmail.com" }, { label: "WhatsApp", href: "https://wa.me/923410184098" }] },
]}
@@ -68,4 +65,4 @@ export default function ContactPage() {
</ReactLenis>
</ThemeProvider>
);
}
}