From 4283078a47cb948f3c6b8858cc3f4a66353481b7 Mon Sep 17 00:00:00 2001 From: thePeras Date: Tue, 30 Jul 2024 13:06:33 +0100 Subject: [PATCH] Change primary color --- .gitignore | 3 +- README.md | 78 ++++---------------- app/(site)/{error/page.tsx => 404.tsx} | 0 app/(site)/auth/signin/page.tsx | 18 ----- app/(site)/auth/signup/page.tsx | 16 ----- app/(site)/layout.tsx | 2 - app/(site)/not-found.tsx | 54 ++++++++++++++ components/Footer/index.tsx | 4 +- components/Header/index.tsx | 20 +----- components/Header/menuData.tsx | 12 ---- markdown/docs/bootstrap-template.mdx | 92 ------------------------ markdown/docs/contact-form.mdx | 52 -------------- markdown/docs/style-guide.mdx | 19 ----- markdown/docs/tailwind-component.mdx | 95 ------------------------- markdown/docs/tailwind-template.mdx | 82 --------------------- package-lock.json | 9 +++ package.json | 1 + public/images/logo/aefeup.png | Bin 0 -> 27579 bytes public/images/logo/logo-dark.svg | 9 --- public/images/logo/logo-light.svg | 9 --- tailwind.config.js | 10 ++- yarn.lock | 23 +++--- 22 files changed, 107 insertions(+), 501 deletions(-) rename app/(site)/{error/page.tsx => 404.tsx} (100%) delete mode 100644 app/(site)/auth/signin/page.tsx delete mode 100644 app/(site)/auth/signup/page.tsx create mode 100644 app/(site)/not-found.tsx delete mode 100644 markdown/docs/bootstrap-template.mdx delete mode 100644 markdown/docs/contact-form.mdx delete mode 100644 markdown/docs/style-guide.mdx delete mode 100644 markdown/docs/tailwind-component.mdx delete mode 100644 markdown/docs/tailwind-template.mdx create mode 100644 public/images/logo/aefeup.png delete mode 100644 public/images/logo/logo-dark.svg delete mode 100644 public/images/logo/logo-light.svg 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..32f6e95 100644 --- a/README.md +++ b/README.md @@ -1,69 +1,24 @@ -# 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 -**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. +## Packages -### [🔥 Get Solid Pro - Next.js SaaS Boilerplate and Starter Kit](https://nextjstemplates.com/templates/solid) +- Framer Motion +- Lucide Icons -![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 +28,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)/error/page.tsx b/app/(site)/404.tsx similarity index 100% rename from app/(site)/error/page.tsx rename to app/(site)/404.tsx diff --git a/app/(site)/auth/signin/page.tsx b/app/(site)/auth/signin/page.tsx deleted file mode 100644 index cf04d17..0000000 --- a/app/(site)/auth/signin/page.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import Signin from "@/components/Auth/Signin"; -import { Metadata } from "next"; - -export const metadata: Metadata = { - title: "Login Page - Solid SaaS Boilerplate", - description: "This is Login page for Startup Pro", - // other metadata -}; - -const SigninPage = () => { - return ( - <> - - - ); -}; - -export default SigninPage; diff --git a/app/(site)/auth/signup/page.tsx b/app/(site)/auth/signup/page.tsx deleted file mode 100644 index 80f8fb1..0000000 --- a/app/(site)/auth/signup/page.tsx +++ /dev/null @@ -1,16 +0,0 @@ -import Signup from "@/components/Auth/Signup"; -import { Metadata } from "next"; - -export const metadata: Metadata = { - title: "Sign Up Page - Solid SaaS Boilerplate", - description: "This is Sign Up page for Startup Pro", - // other metadata -}; - -export default function Register() { - return ( - <> - - - ); -} 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}