This repository contains the codebase for advertising of Software development company. The project is built using Next.js, Tailwind CSS, and TypeScript. Its style sheets are compiled using Sass. And It interacts with Firestore to retrieve and store internal data. Lastly, it’s compatible with Gmail for sending emails through the contact page.
This company advertising website is designed to provide information about services provided, team, and projects. It is a modern, responsive, and performant web application.
To get a local copy up and running, follow these steps.
Make sure you have the following installed:
Clone the repository:
git clone https://github.com/devtwinkler/SoftSolution.ad.git
cd SoftSolution.ad
npm install
npm run dev
Project structure
.
├── public # Public assets
├── src # Source code for the project
| ├── app # Directory each router in App-router
| | ├── about # about page router
| | ├── api # Directory each APIs
| | | ├── send-email.ts # API router for sending email
| | ├── blog # blog page router
| | ├── contact # contact page router
| | ├── home # home page router
| | ├── portfolio # portfolio page router
| | ├── service # service page router
| | ├── favicon.ico # main icon
| | ├── layout.tsx # layout router in App-router
| | ├── not-found.tsx # note-found page
| | ├── page.tsx # main router in App-router
| | ├── providers.tsx # root structure
| ├── assets # every asset files, such as images, scss/css, fonts, icons
| ├── components # reusable components
| | ├── layouts # layout components such as header, footer, main panel
| | ├── pages # each page components
| | | ├── about.tsx # about page
| | | ├── blog.tsx # blog page
| | | ├── contact.tsx # contact page
| | | ├── home.tsx # home page
| | | ├── portfolio.tsx # portfolio page
| | | ├── service.tsx # service page
| ├── libs # Every static, parameter values, and libraries defined here
| | | ├── const.tsx # const values
| | | ├── firebase.tsx # firebase account credential
| | | ├── methods.tsx # Typescript functions defined here
| | | ├── types.tsx # Every type defined here
| ├── store # Reducer
| | | ├── header.ts # Reducer actions in header component
| | | ├── mask.ts # Reducer actions for page mask
| | | ├── index.ts # Interface to Reducer
├────────────────────────────────────────────────────────────────