Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/assets/desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/support.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/www.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions src/app/(screen)/services/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import React from "react";
import Image from "next/image";

export default function Services() {
return (
<div className="container flex flex-col gap-2 md:flex-row items-center min-h-[calc(100vh-6rem)]">
<section className="flex-1">
<div>
<div><Image src="/assets/www.jpg" width={206} height={206} alt="Hosting & SEO" className="mx-auto" /></div>
<div className="flex items-center justify-center mx-auto lg:w-[383px] lg:h-[184px]"><h1 className="text-4xl font-bold text-center">Heading & SEO</h1></div>
<div className="mx-auto w-[365px] h-[84px] p-2">
<p className="text-center text-white/54 text-medium lg:text-xl md:text-base text-xl">We ensure your website is live, optimized for search engines, and ready to reach your audience effectively.</p>
</div>
</div>
</section>
<section className="flex-1">
<div>
<div><Image src="/assets/desktop.png" width={206} height={206} alt="Website Development" className="mx-auto" /></div>
<div className="flex items-center justify-center mx-auto lg:w-[383px] lg:h-[184px]"><h1 className="text-4xl font-bold text-center">Website Development</h1></div>
<div className="mx-auto w-[365px] h-[84px] p-2">
<p className="text-center text-white/54 text-medium lg:text-xl md:text-base text-xl">We design and build custom websites that are fast, responsive, and built to leave a lasting impact.</p>
</div>
</div>
</section>
<section className="flex-1">
<div>
<div><Image src="/assets/support.png" width={206} height={206} alt="Website Maintainance" className="mx-auto" /></div>
<div className="flex items-center justify-center mx-auto lg:w-[383px] lg:h-[184px]"><h1 className="text-4xl font-bold text-center">Website Maintainance</h1></div>
<div className="mx-auto w-[365px] h-[84px] p-2">
<p className="text-center text-white/54 text-medium lg:text-xl md:text-base text-xl">We keep your site secure, updated, and running smoothly so you can focus on growing your business.</p>
</div>
</div>
</section>
</div>)
}
2 changes: 1 addition & 1 deletion src/components/layout/Head.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const Header = () => {
</Link>
</li>
<li>
<Link href={"/#services"} className="hover:text-complement">
<Link href={"/services"} className="hover:text-complement">
Services
</Link>
</li>
Expand Down
2 changes: 1 addition & 1 deletion src/components/layout/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const Header = () => {
<Link href={"/#work"}>Work</Link>
</li>
<li className="hover:scale-110 transition-transform duration-200">
<Link href={"/#services"}>Services</Link>
<Link href={"/services"}>Services</Link>
</li>
<li className="hover:scale-110 transition-transform duration-200">
<Link href={"/about"}>About</Link>
Expand Down