Skip to content

Commit

Permalink
routes added
Browse files Browse the repository at this point in the history
  • Loading branch information
kaiesmahmud committed Oct 17, 2023
1 parent 0460410 commit b7a111b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<script>
import Counter from './Counter.svelte';
import welcome from '$lib/images/svelte-welcome.webp';
import welcome_fallback from '$lib/images/svelte-welcome.png';
</script>
Expand All @@ -18,14 +17,13 @@
</picture>
</span>

to your new<br />SvelteKit app

</h1>

<h2>
try editing <strong>src/routes/+page.svelte</strong>
Please Login to see Courses
</h2>

<Counter />
</section>

<style>
Expand Down
1 change: 1 addition & 0 deletions src/routes/student/dashboard/+page.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<h1>student-dashboard</h1>
1 change: 1 addition & 0 deletions src/routes/student/login/+page.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<h1>student login</h1>
1 change: 1 addition & 0 deletions src/routes/teacher/dashboard/+page.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<h1>teacher-dashboard</h1>
1 change: 1 addition & 0 deletions src/routes/teacher/login/+page.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<h1>teacher-login</h1>

0 comments on commit b7a111b

Please sign in to comment.