diff --git a/public/cta-hero.png b/public/cta-hero.png new file mode 100644 index 0000000..4a89d24 Binary files /dev/null and b/public/cta-hero.png differ diff --git a/public/design-example.png b/public/design-example.png new file mode 100644 index 0000000..c620bca Binary files /dev/null and b/public/design-example.png differ diff --git a/public/freelance-hero-shape.svg b/public/freelance-hero-shape.svg new file mode 100644 index 0000000..a3a2682 --- /dev/null +++ b/public/freelance-hero-shape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/freelance-hero.png b/public/freelance-hero.png new file mode 100644 index 0000000..0b31adb Binary files /dev/null and b/public/freelance-hero.png differ diff --git a/public/projects.png b/public/projects.png new file mode 100644 index 0000000..11d34b4 Binary files /dev/null and b/public/projects.png differ diff --git a/src/pages/freelance/index.tsx b/src/pages/freelance/index.tsx new file mode 100644 index 0000000..e40da40 --- /dev/null +++ b/src/pages/freelance/index.tsx @@ -0,0 +1,151 @@ +import { wrapper } from "@/lib/redux"; +import Internal from "@/components/common/Internal"; +import { Button } from "@/components/ui/button"; +import Link from "next/link"; +import Image from "next/image"; + +export const getStaticProps = wrapper.getStaticProps( + (store) => async (context) => { + return { + props: {}, + revalidate: 50, + }; + } +); + +export default function Freelance(): JSX.Element { + return ( + +
+
+

+ Let's Build Your Website! +

+ +
+ Circular Shape at the bottom of the hero section +
+ +
+
+

+ First, lets talk about your project! +

+

+ Effective requirement gather is the foundation of a successful web + design project. It beings with in-depth research and client + consultations to understand the project's goals, target audience, + and unique objectives. This crucial process involves gathering + information, such as content, design preferences, and technical + specifications, while considering SEO best practices to ensure + search engine visibility. Thoroughly documented requirements serve + as a roadmap for the design phase, resulting in a user-friendly, + visually appealing, and search engine optimized website that aligns + with the clients vision and objectives. Proper requirement gathering + ensures a seamless and efficient web design process, ultimately + benefiting the project's online presence and search engine rankings. +

+
+ +
+
+

+ Second, the design process! +

+

+ The web design process is a crucial step in creating an online + presence that resonates with users and search engines alike. By + meticulously crafting the layout, visuals, and functionality, of a + website, web designers ensure an exceptional user experience. This + user-centric approach enhances user engagement, reduces bounce + rates, and ultimately boosts search engine rankings. A + well-designed website not only looks appealing but also loads + quickly, is easy to navigate, and adapts seamlessly to various + devices, enhancing accessibility. This improved user experience + translates to increased user satisfaction and retention, + ultimately benefiting your web project by driving organic traffic, + improving conversion rates, and elevating your online visbility in + search engine results pages. +

+
+ Image of Adobe XD to show how a design would be made for your project +
+ +
+ Image of Projects I have worked on in the past, Opalescence and my own Popshop application. +
+

+ Straight to implementation! +

+

+ Web development is the cornerstone of a successful web project, + shaping the digital landscape to meet user needs and search engine + expectations. Through the intricate process of coding and database + integration, web developers bring web designs to life, creating a + responsive, fast, and secure website. This results in an + exceptional user experience, characterized by quick loading times + and seamless functionality. Such a well-structured and optimized + website not only engages visitors but also aligns with search + engine algorithms, leading to improved search engine rankings and + increased organic traffic. +

+
+
+
+ +
+
+

+ Let's Build Your Website! +

+

+ I will be contacting your shortly to discuss your exciting project + further! +

+ +
+
+
+ ); +}