We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa447b3 commit 682c4d4Copy full SHA for 682c4d4
src/components/shared/Header.vue
@@ -76,7 +76,7 @@
76
<router-link
77
to="/blog"
78
class="block text-left text-lg font-medium text-primary-dark dark:text-ternary-light hover:text-secondary-dark dark:hover:text-secondary-light md:mx-2 mb-2 sm:py-3"
79
- >Blog</router-link
+ >Search</router-link
80
>
81
</div>
82
<div
src/views/Blog.vue
@@ -1,6 +1,13 @@
1
<template>
2
<div>
3
- <h1>Blog Coming Soon...</h1>
+ <div class="flex items-center justify-center ">
4
+ <div class="flex border-2 border-gray-200 rounded">
5
+ <input type="text" class="px-4 py-2 w-80" placeholder="Search Todo...">
6
+ <button class="px-4 text-white bg-gray-600 border-l ">
7
+ Search
8
+ </button>
9
+ </div>
10
+</div>
11
12
</template>
13
0 commit comments