diff --git a/src/App.vue b/src/App.vue
index 3ed7229..ad3a432 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -2,6 +2,7 @@
import SeasonList from '@/components/layout/SeasonList.vue';
import { ref } from 'vue';
import logoSrc from '@/assets/logo.svg';
+import SearchBar from '@/components/layout/SearchBar.vue';
const sidebarOpen = ref(false);
@@ -62,28 +63,7 @@ const headings = [
@@ -103,12 +83,7 @@ const headings = [
-
-
Welcome to The Office
-
- This is your main content area. You can add your router-view or other components here.
-
-
+
diff --git a/src/components/layout/SearchBar.vue b/src/components/layout/SearchBar.vue
new file mode 100644
index 0000000..48de0ff
--- /dev/null
+++ b/src/components/layout/SearchBar.vue
@@ -0,0 +1,20 @@
+
+
+
+
+
diff --git a/src/router.ts b/src/router.ts
index e580026..3b567c8 100644
--- a/src/router.ts
+++ b/src/router.ts
@@ -37,12 +37,12 @@ const router = createRouter({
component: Character,
},
{
- path: '/:season/',
+ path: '/season/:season',
name: 'Season',
component: Season,
},
{
- path: '/:season/:episode',
+ path: '/episode/:episode',
name: 'Episode',
component: Episode,
},
diff --git a/src/views/Episode.vue b/src/views/Episode.vue
index b9ad6c2..5f08a2a 100644
--- a/src/views/Episode.vue
+++ b/src/views/Episode.vue
@@ -1,9 +1,122 @@
+
+
-
-
-
+
+
+
"{{ episode.title }}"
@@ -50,96 +163,3 @@
line-height: 12px;
}
-
-