diff --git a/package.json b/package.json index 01fabc1..259d65e 100644 --- a/package.json +++ b/package.json @@ -16,13 +16,16 @@ "axios": "^1.5.1", "clsx": "^2.0.0", "currency-symbol-map": "^5.1.0", + "daisyui": "^4.6.3", "lodash": "^4.17.21", "moment": "^2.29.4", "next": "13.5.4", "react": "^18", "react-dom": "^18", + "react-hook-form": "^7.50.1", "react-icons": "^4.11.0", "react-string-replace": "^1.1.1", + "react-toastify": "^10.0.4", "sharp": "^0.32.6" }, "devDependencies": { diff --git a/public/person_laptop_focus.jpg b/public/person_laptop_focus.jpg new file mode 100644 index 0000000..3ac393a Binary files /dev/null and b/public/person_laptop_focus.jpg differ diff --git a/src/app/ar/contact/page.tsx b/src/app/ar/contact/page.tsx index 4d72b14..dcb32c6 100644 --- a/src/app/ar/contact/page.tsx +++ b/src/app/ar/contact/page.tsx @@ -1,6 +1,5 @@ -import About from "@/templates/About"; -import ComingSoon from "@/templates/ComingSoon"; +import ContactUs from "@/templates/ContactUs"; export default function Page() { - return ; + return ; } diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index f3392ac..94d974a 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,6 +1,5 @@ -import About from "@/templates/About"; -import ComingSoon from "@/templates/ComingSoon"; +import ContactUs from "@/templates/ContactUs"; export default function Page() { - return ; + return ; } diff --git a/src/app/join/page.tsx b/src/app/join/page.tsx deleted file mode 100644 index e8270d7..0000000 --- a/src/app/join/page.tsx +++ /dev/null @@ -1,28 +0,0 @@ -/* eslint-disable @next/next/no-img-element */ -import Link from "next/link"; -import {BsInstagram, BsTwitter} from "react-icons/bs"; -import {BiLogoFacebook} from "react-icons/bi"; -import Navbar from "@/components/Navbar"; -import PricingTable from "@/components/PricingTable"; -import Footer from "@/components/Footer"; - -export default function Home() { - return ( -
- - -
-

Available Packages

-
- - Once the payment process is complete, you will receive a code via e-mail to register to the application. - - (Or have time added to your account, if already registered with the given e-mail). - -
-
- -
-
- ); -} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0553799..bf937a7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,6 +1,7 @@ /* eslint-disable @next/next/no-page-custom-font */ import clsx from "clsx"; import "./globals.css"; +import "react-toastify/dist/ReactToastify.css"; import type {Metadata} from "next"; import {Inter} from "next/font/google"; import {Almarai} from "next/font/google"; @@ -26,9 +27,6 @@ export default function RootLayout({children}: {children: React.ReactNode}) { httpEquiv="Content-Security-Policy-Report-Only" content="default-src 'self' *.stripe.com *.encoach.com staging.encoach.com localhost" /> - -