diff --git a/.gitignore b/.gitignore
index 4dcb7a1..2205207 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
-node_modulesnode_modules/
+node_modules/
+.next/
\ No newline at end of file
diff --git a/README.md b/README.md
index 8898eb7..96d8646 100644
--- a/README.md
+++ b/README.md
@@ -1,69 +1,20 @@
-# Solid - Free Next.js Web Template and Starter Kit for SaaS
+# AEFEUP Website 🚀
-Solid is a free Next.js template specifically crafted for startups, SaaS, and software websites. It provides an extensive array of necessary sections, elements, and pages required to build a fully-equipped website for any SaaS, software, or startup site. Comes with all cutting edge React and Next.js features - **Built with Next.js 13, React 18 and TypeScript.**
+## Tech Stack
-This Next.js template's homepage comes with an awesome hero area, logos of associated brands, a features section, an about section, another features section with tabs, counters, and star ratings, integration options, clear call-to-actions, an FAQ section with accordions, a testimonials section, pricing tables, a contact page, a blog, and a distinctive footer.
+- Nextjs 13
+- React 18
+- TypeScript
+- Framer Motion
-**Solid Next.js template packed with all necessary external pages** - such as login, registration, blog grids, and single blog pages, among others. This broad collection of pages provides all the necessary tools to create a feature-packed, comprehensive, and visually appealing website or landing page for software, a web application, or SaaS.
-### [🔥 Get Solid Pro - Next.js SaaS Boilerplate and Starter Kit](https://nextjstemplates.com/templates/solid)
-
-![Startup Pro](https://uideck.com/wp-content/uploads/edd/2023/07/solid-saas.png)
-
-### [🚀 Solid PRO Live Demo](https://solid.nextjstemplates.com/)
-
-### [🚀 Solid FREE Live Demo](https://solid-free.nextjstemplates.com/)
-
-### TailAdmin React PRO vs TailAdmin React FREE Comparison 📊
-
-#### [Solid PRO](https://solid.nextjstemplates.com/)
-- SaaS Boilerplate + Starter Kit with Essential Integrations and Functionalities
-- Essential Integrations: Auth, DB, Stripe, MDX and More ...
-- Fully Functional, Ready to Use Sanity Blog Support
-- Premium Email Support
-- Functional External Pages
-- Free Lifetime Future Updates
-___
-#### [Solid FREE](https://solid-free.nextjstemplates.com/)
-- Only UI - Coded for Next.js
-- No Integrations
-- No Functional Blogging System
-- External Pages without Functions/Integrations
-- Community Support
-- Free Lifetime Future Updates
-___
-
-### [📦 Download](https://nextjstemplates.com/templates/solid)
-
-### [🔥 Get Pro](https://nextjstemplates.com/templates/solid)
-
-### [🔌 Documentation](https://nextjstemplates.com/docs)
-
-### âš¡ Deploy Now
-
-[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2FNextJSTemplates%2Fsolid-nextjs)
-
-[![Deploy with Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/NextJSTemplates/solid-nextjs)
-
-
-## Installation
+## âš¡ Installation
Here are the steps you need to follow to install the dependencies.
-1.Download and extract the template from **Next.js Templates.**
-
-2.**cd** into the template directory then run this command to install all the dependencies
-
```bash
npm install
```
-
-or
-
-```bash
- yarn install
- ```
-
You can start the project on the local server
@@ -73,17 +24,10 @@ You can start the project on the local server
It’ll start the template on [localhost:3000](http://localhost:3000).
-The documentation includes all the guides you need for the integrations.
-
-
-### Deploying on PaaS
-
-If you are using a GitHub repo then you can go with free-of-cost and easy-to-use options like [Vercel](https://vercel.com/), or [Netlify](https://netlify.com/) they offer decent-free tiers for Next.js hosting.
+## Project structure
-### 📄 License
-Solid Free is 100% free and open-source, feel free to use with your personal and commercial projects.
+- The `pages` directory contains all the pages of the project with app routing, as each file in this directory corresponds to a page.
-### 💜 Support
-If you like the template, please star this repository to inspire the team to create more stuff like this and reach more users like you!
+- The `components` directory contains all the components used in the project.
-### ✨ Browse and Download - Best Free [Next.js Templates](https://nextjstemplates.com/templates)
+- The `public` directory contains all the static files used in the project like images.
\ No newline at end of file
diff --git a/app/(site)/layout.tsx b/app/(site)/layout.tsx
index 13ecd1d..0f1b07f 100644
--- a/app/(site)/layout.tsx
+++ b/app/(site)/layout.tsx
@@ -3,7 +3,6 @@
import Footer from "@/components/Footer";
import Header from "@/components/Header";
import Lines from "@/components/Lines";
-import ScrollToTop from "@/components/ScrollToTop";
import { ThemeProvider } from "next-themes";
import { Inter } from "next/font/google";
import "../globals.css";
@@ -29,7 +28,6 @@ export default function RootLayout({
{children}
-