From 9804acf49b30c9846af5039b1546d6fe80b6c92e Mon Sep 17 00:00:00 2001 From: BlackDives Date: Sun, 30 Apr 2023 03:00:17 -0500 Subject: [PATCH] SR-002: Basic layout created --- src/pages/index.tsx | 48 +++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 46 insertions(+), 2 deletions(-) diff --git a/src/pages/index.tsx b/src/pages/index.tsx index b9a6781..40588ac 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -1,5 +1,8 @@ import { type NextPage } from "next"; import Head from "next/head"; +import Web from "../../public/icons/web.svg"; +import Mobile from "../../public/icons/mobile.svg"; +import Design from "../../public/icons/design.svg"; const Home: NextPage = () => { return ( @@ -11,7 +14,7 @@ const Home: NextPage = () => { <> - {/* */} + {/* */} {/* */} {/* */} @@ -35,7 +38,48 @@ const Hero = () => { ); }; -// const Services = () => {} +const Services = () => { + const Services = [ + { + id: 1, + icon: `${Web}`, + title: "Websites", + description: + "Fast. Responsive. Accessible. We specialize in building high-performing websites without leaving any users behind. ", + }, + { + id: 2, + icon: `${Mobile}`, + title: "Mobile Apps", + description: + "We build cross-platform mobile apps. Lorem ipsum dolor sit amet consectetur adipiscing elit.", + }, + { + id: 3, + icon: `${Design}`, + title: "UI/UX Design", + description: + "First impressions matter. We know how to craft unique and impressive digital experiences.", + }, + ]; + + return ( +
+
+

What we can do for you

+
+
+ {Services.map((data) => ( +
+ service-icon +

{data.title}

+

{data.description}

+
+ ))} +
+
+ ); +}; // const Projects = () => {} // const About = () => {} // const Contact = () => {}