1
1
<template >
2
- <div class =" container mx-auto bg-white px-4" >
3
- <div class =" md:flex items-center justify-between py-5" >
4
- <div class =" flex justify-between items-center" >
5
- <div class =" text-lg text-gray-500" >
6
- © ; Copyright 2021. <a href =" https://stoman.me" target =" __blank" class =" text-gray-600 font-medium" >Stoman</a >
7
- </div >
8
- </div >
9
- <div >
10
- <ul class =" flex gap-4" >
11
- <li class =" text-gray-400 hover:text-green-500 cursor-pointer" ><i data-feather =" twitter" ></i ></li >
12
- <li class =" text-gray-400 hover:text-green-500 cursor-pointer" ><i data-feather =" instagram" ></i ></li >
13
- <li class =" text-gray-400 hover:text-green-500 cursor-pointer" ><i data-feather =" github" ></i ></li >
14
- </ul >
15
- </div >
16
- </div >
17
- </div >
2
+ <div class =" container mx-auto bg-white px-4 pt-64 pb-12" >
3
+ <div class =" flex flex-col justify-center items-center mb-32" >
4
+ <p class =" text-5xl font-semibold text-gray-500 mb-5" >Follow me</p >
5
+ <ul class =" flex gap-10" >
6
+ <li
7
+ class =" text-gray-400 hover:text-indigo-500 cursor-pointer rounded-lg bg-gray-50 hover:bg-gray-100 shadow-sm p-4"
8
+ >
9
+ <i data-feather =" twitter" class =" w-10 h-10" ></i >
10
+ </li >
11
+ <li
12
+ class =" text-gray-400 hover:text-indigo-500 cursor-pointer rounded-lg bg-gray-50 hover:bg-gray-100 shadow-sm p-4"
13
+ >
14
+ <i data-feather =" instagram" class =" w-10 h-10" ></i >
15
+ </li >
16
+ <li
17
+ class =" text-gray-400 hover:text-indigo-500 cursor-pointer rounded-lg bg-gray-50 hover:bg-gray-100 shadow-sm p-4"
18
+ >
19
+ <i data-feather =" github" class =" w-10 h-10" ></i >
20
+ </li >
21
+ </ul >
22
+ </div >
23
+ <div class =" flex justify-center items-center text-center" >
24
+ <div class =" text-lg text-gray-500" >
25
+ © ; Copyright 2021.
26
+ <a
27
+ href =" https://stoman.me"
28
+ target =" __blank"
29
+ class =" text-gray-600 font-medium"
30
+ >Stoman</a
31
+ >
32
+ </div >
33
+ </div >
34
+ </div >
18
35
</template >
19
36
20
37
<script >
21
- import feather from ' feather-icons'
22
- export default {
23
- mounted () {
24
- feather .replace ();
25
- },
26
- updated () {
27
- feather .replace ();
28
- }
29
- }
38
+ import feather from ' feather-icons' ;
39
+ export default {
40
+ mounted () {
41
+ feather .replace ();
42
+ },
43
+ updated () {
44
+ feather .replace ();
45
+ },
46
+ };
30
47
</script >
31
48
32
- <style scoped>
33
-
34
- </style >
49
+ <style scoped></style >
0 commit comments