diff --git a/src/app/favicon.ico b/src/app/favicon.ico new file mode 100644 index 0000000..718d6fe Binary files /dev/null and b/src/app/favicon.ico differ diff --git a/src/app/globals.css b/src/app/globals.css new file mode 100644 index 0000000..04b35af --- /dev/null +++ b/src/app/globals.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..adfa1e8 --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,23 @@ +import type { Metadata } from "next"; +import { DM_Sans } from "next/font/google"; +import clsx from "clsx"; +import "./globals.css"; + +const dmSans = DM_Sans({ subsets: ["latin"] }); + +export const metadata: Metadata = { + title: "Saas Template - EldoraUI", + description: "Template for saas applications with dark theme", +}; + +export default function RootLayout({ + children, +}: Readonly<{ + children: React.ReactNode; +}>) { + return ( + + {children} + + ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx new file mode 100644 index 0000000..666f66c --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,33 @@ +import { Banner } from "@/components/Banner"; +import { Navbar } from "@/components/Navbar"; +import { Hero } from "@/components/Hero"; +import { LogoTicker } from "@/components/LogoTicker"; +import { Features } from "@/components/Features"; +import { ProductShowcase } from "@/components/ProductShowcase"; +import { FAQs } from "@/components/FAQs"; +import { CallToAction } from "@/components/CallToAction"; +import { Footer } from "@/components/Footer"; +import { Pricing } from "@/components/Pricingdemo"; + + +export default function Home() { + return ( + <> +
+ + + + + + + + + + + + +
+