-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: Footer과 Header 레이아웃 폴더 이동 및 import문 수정
- Loading branch information
Showing
8 changed files
with
28 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -97,8 +97,8 @@ | |
|
||
<script setup> | ||
import { ref } from 'vue' | ||
import MainHeader from '@/views/mainpage/Header.vue' | ||
import MainFooter from '@/views/mainpage/Footer.vue' | ||
import MainHeader from '@/components/layout/Header.vue' | ||
import MainFooter from '@/components/layout/Footer.vue' | ||
import minielephanticon from '@/assets/Icons/akoming/mainpage/minielephanticon.svg' | ||
const stamps = ref([ | ||
|
@@ -118,3 +118,13 @@ const tasks = ref([ | |
{ name: '아코폴리오', completed: false } | ||
]) | ||
</script> | ||
|
||
<style scoped> | ||
@font-face { | ||
font-family: 'UhBeeSe_hyun'; | ||
src: url('https://gcore.jsdelivr.net/gh/projectnoonnu/[email protected]/UhBeeSe_hyun.woff') | ||
format('woff'); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
</style> |