forked from CSID-DGU/2024-2-OSSProj-Osori-FE-01
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request CSID-DGU#10 from study2895/main
[Rename] [Feat] Header, Footer ํ์ผ ์ด๋ ๋ฐ Fonts ํด๋์ Fonts.css ์ถ๊ฐ
- Loading branch information
Showing
11 changed files
with
43 additions
and
121 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/* src/assets/fonts.css */ | ||
@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; | ||
} |
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
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 |
---|---|---|
|
@@ -7,7 +7,9 @@ | |
<!-- ๋ณธ๋ฌธ ๋ด์ฉ --> | ||
<main class="flex flex-col px-6 pt-20 pb-24"> | ||
<!-- ์ ๋ชฉ --> | ||
<h1 class="mb-6 text-2xl font-bold text-center text-gray-800"> | ||
<h1 | ||
class="mb-6 text-xl font-medium text-center text-gray-800 font-uhbeesehyun" | ||
> | ||
์ค๋๋ ์ฐ๋ฆฌ ์์ฝ๋ ํ ๊ฑธ์์ฉ! | ||
</h1> | ||
|
||
|
@@ -97,8 +99,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 +120,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> |
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