File tree Expand file tree Collapse file tree 4 files changed +8
-180
lines changed Expand file tree Collapse file tree 4 files changed +8
-180
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ import Dashboard from "./components/Dashboard"
7
7
import UploadNotes from "./components/UploadNotes" ;
8
8
import Navbar from "./components/Navbar" ;
9
9
import Landingpage from "./components/Landingpage" ;
10
- import Anav from "./components/Anav" ;
11
10
import About from "./components/About" ;
12
11
import Team from "./components/Team" ;
13
12
import Studyplanner from "./components/Studyplanner" ;
@@ -23,7 +22,7 @@ function App() {
23
22
< Route path = "/dashboard" element = { < Dashboard /> } />
24
23
< Route path = "/uploadnotes" element = { < UploadNotes /> } />
25
24
< Route path = "/Navbar" element = { < Navbar /> } />
26
- < Route path = "/Anav" element = { < Anav /> } />
25
+
27
26
< Route path = "/landing" element = { < Landingpage /> } />
28
27
< Route path = "/about" element = { < About /> } />
29
28
< Route path = "/team" element = { < Team /> } />
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
import React from 'react'
2
2
import Lottie from 'lottie-react' ;
3
3
import animation from '../assets/39701-robot-bot-3d.json' ;
4
+ import { Link } from 'react-router-dom' ;
4
5
function Hero ( ) {
5
6
return (
6
7
< div >
7
- < section className = "bg-white dark:bg-violet-900 mt-4" >
8
+ < section className = "bg-white dark:bg-violet-900 mt-4 w-screen " >
8
9
< div className = "grid max-w-screen-xl px-4 py-8 mx-auto lg:gap-8 xl:gap-0 lg:py-16 lg:grid-cols-12" >
9
10
< div className = "mr-auto place-self-center lg:col-span-7" >
10
11
< h1 className = "max-w-2xl mb-4 text-4xl font-extrabold tracking-tight leading-none md:text-5xl xl:text-6xl dark:text-white" > Unlock Your Academic Potential with LearnMateAI</ h1 >
11
12
< p className = "max-w-2xl mb-6 font-light text-gray-500 lg:mb-8 md:text-lg lg:text-xl dark:text-gray-400" > Personalized Learning for Smarter Results</ p >
13
+ < Link to = '/upload' >
12
14
< a href = "#" className = "inline-flex items-center justify-center px-5 py-3 mr-3 text-base font-medium text-center text-white rounded-lg bg-primary-700 hover:bg-primary-800 focus:ring-4 focus:ring-primary-300 dark:focus:ring-primary-900" >
13
- Get started
15
+ Upload Notes
14
16
< svg className = "w-5 h-5 ml-2 -mr-1" fill = "currentColor" viewBox = "0 0 20 20" xmlns = "http://www.w3.org/2000/svg" > < path fillRule = "evenodd" d = "M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z" clipRule = "evenodd" > </ path > </ svg >
15
17
</ a >
18
+ </ Link >
16
19
< a href = "#" className = "inline-flex items-center justify-center px-5 py-3 text-base font-medium text-center text-gray-900 border border-gray-300 rounded-lg hover:bg-violet-900 focus:ring-4 focus:ring-gray-100 dark:text-white dark:border-gray-700 dark:hover:bg-gray-700 dark:focus:ring-gray-800" >
17
20
Watch Video
18
21
</ a >
Original file line number Diff line number Diff line change @@ -55,10 +55,10 @@ const Navbar = () => {
55
55
Study Planner
56
56
</ Link >
57
57
< Link
58
- to = "/login "
58
+ to = "/dashboard "
59
59
className = "hover:text-gray-900 px-3 py-2 rounded-md text-sm"
60
60
>
61
- Login
61
+ Dashboard
62
62
</ Link >
63
63
</ div >
64
64
</ div >
You can’t perform that action at this time.
0 commit comments