Update src/app/about/page.tsx
This commit is contained in:
@@ -7,7 +7,7 @@ import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
@@ -25,28 +25,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Portfolio",
|
||||
id: "/portfolio",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Portfolio", id: "/portfolio" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="NexaDev Solutions"
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -58,19 +44,9 @@ export default function LandingPage() {
|
||||
description="Rigorous standards for modern development."
|
||||
features={[
|
||||
{
|
||||
tag: "Methodology",
|
||||
title: "Agile Development",
|
||||
subtitle: "Adaptive",
|
||||
description: "Continuous delivery cycles.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/data-scientist-doing-software-quality-assurance-reading-source-code_482257-116879.jpg",
|
||||
},
|
||||
tag: "Methodology", title: "Agile Development", subtitle: "Adaptive", description: "Continuous delivery cycles.", imageSrc: "http://img.b2bpic.net/free-photo/data-scientist-doing-software-quality-assurance-reading-source-code_482257-116879.jpg"},
|
||||
{
|
||||
tag: "Quality",
|
||||
title: "QA Assurance",
|
||||
subtitle: "Flawless",
|
||||
description: "Automated testing frameworks.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-man-programmer-manages-code-scripts-artificial-intelligence_482257-120314.jpg",
|
||||
},
|
||||
tag: "Quality", title: "QA Assurance", subtitle: "Flawless", description: "Automated testing frameworks.", imageSrc: "http://img.b2bpic.net/free-photo/black-man-programmer-manages-code-scripts-artificial-intelligence_482257-120314.jpg"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -81,27 +57,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Our Partners"
|
||||
description="Collaborating with elite teams."
|
||||
names={[
|
||||
"AWS",
|
||||
"Azure",
|
||||
"GCP",
|
||||
"Vercel",
|
||||
"Docker",
|
||||
]}
|
||||
names={["AWS", "Azure", "GCP", "Vercel", "Docker"]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="NexaDev Solutions"
|
||||
leftLink={{
|
||||
text: "Privacy Policy",
|
||||
href: "/legal",
|
||||
}}
|
||||
rightLink={{
|
||||
text: "Terms of Service",
|
||||
href: "/legal",
|
||||
}}
|
||||
leftLink={{ text: "Privacy Policy", href: "/legal" }}
|
||||
rightLink={{ text: "Terms of Service", href: "/legal" }}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user