diff --git a/src/app/page.tsx b/src/app/page.tsx index 4a3837af..f3f46a6f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,20 +1,45 @@ 'use client'; import Link from 'next/link'; -import type { NextPage } from 'next'; -const Home: NextPage = () => { +const Home = () => { return ( -
-

- Welcome to the Dashboard -

-
- - Go to Dashboard - - - API Documentation - +
+
+
+

+ Proud to introduce +

+

+ Revolutionary way to build the web +

+

+ Welcome to DocDoc, the ultimate knowledge sharing platform. Create + and share articles effortlessly, collaborate with peers, and enjoy + automatic text linting for flawless writing. With our AI-powered + local LLM, you can review and refine your content like never before. + Join us and experience the future of content creation. +

+
+ + Start now + + + Take a tour + + + API Docs + +
+
); diff --git a/src/app/tour/page.tsx b/src/app/tour/page.tsx new file mode 100644 index 00000000..f29f594d --- /dev/null +++ b/src/app/tour/page.tsx @@ -0,0 +1,20 @@ +'use client'; + +const Tour = () => { + return ( +
+
+
+

+ Take a Tour +

+

+ This is the tour page. More content will be added here. +

+
+
+
+ ); +}; + +export default Tour;