Skip to content

Commit

Permalink
폰트 및 공용컬러 추가 (#6)
Browse files Browse the repository at this point in the history
* font-family 추가

* tailwind common color 추가

* color 명 변경

* lang 수정

---------

Co-authored-by: 전유민 <[email protected]>
  • Loading branch information
JeonYumin94 and 전유민 authored Jul 8, 2024
1 parent 87330a0 commit 0d34184
Show file tree
Hide file tree
Showing 6 changed files with 171 additions and 368 deletions.
Binary file added public/epigram-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Html, Head, Main, NextScript } from 'next/document';

export default function Document() {
return (
<Html lang='en'>
<Html lang='ko'>
<Head />
<body>
<Main />
Expand Down
60 changes: 6 additions & 54 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import Head from 'next/head';
import Image from 'next/image';
import styles from '@/styles/Home.module.css';
import { useEffect, useState } from 'react';

export default function Home() {
Expand All @@ -24,62 +22,16 @@ export default function Home() {
return (
<>
<Head>
<title>Create Next App</title>
<title>Epigram</title>
<meta name='description' content='Generated by create next app' />
<meta name='viewport' content='width=device-width, initial-scale=1' />
<link rel='icon' href='/favicon.ico' />
<link rel='icon' href='/epigram-icon.png' />
</Head>
<main className={`${styles.main}`}>
<div className={styles.description}>
<p className='font-bold underline'>
Get started by editing&nbsp;
<code className={styles.code}>src/pages/index.tsx</code>
</p>
<div>
<a href='https://vercel.com?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app' target='_blank' rel='noopener noreferrer'>
By <Image src='/vercel.svg' alt='Vercel Logo' className={styles.vercelLogo} width={100} height={24} priority />
</a>
</div>
</div>
<main>
<div>Epigram Main</div>

<div className={styles.center}>
<Image className={styles.logo} src='/next.svg' alt='Next.js Logo' width={180} height={37} priority />
</div>

<div className={styles.grid}>
<a href='https://nextjs.org/docs?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app' className={styles.card} target='_blank' rel='noopener noreferrer'>
<h2>
Docs <span>-&gt;</span>
</h2>
<p>Find in-depth information about Next.js features and&nbsp;API.</p>
</a>

<a href='https://nextjs.org/learn?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app' className={styles.card} target='_blank' rel='noopener noreferrer'>
<h2>
Learn <span>-&gt;</span>
</h2>
<p>Learn about Next.js in an interactive course with&nbsp;quizzes!</p>
</a>

<a
href='https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app'
className={styles.card}
target='_blank'
rel='noopener noreferrer'
>
<h2>
Templates <span>-&gt;</span>
</h2>
<p>Discover and deploy boilerplate example Next.js&nbsp;projects.</p>
</a>

<a href='https://vercel.com/new?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app' className={styles.card} target='_blank' rel='noopener noreferrer'>
<h2>
Deploy <span>-&gt;</span>
</h2>
<p>Instantly deploy your Next.js site to a shareable URL with&nbsp;Vercel.</p>
</a>
</div>
<p className='font-pretendard text-gray-100 bg-blue-700'>Pretendard</p>
<p className='font-iropkeBatang text-illust-yellow bg-error'>Iropke Batang</p>
</main>
</>
);
Expand Down
223 changes: 0 additions & 223 deletions src/styles/Home.module.css

This file was deleted.

Loading

0 comments on commit 0d34184

Please sign in to comment.