Skip to content

Commit

Permalink
killing sentence를 변경합니다
Browse files Browse the repository at this point in the history
  • Loading branch information
okinawaa committed Apr 4, 2024
1 parent ad19e68 commit 32664b1
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions docs/src/pages/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,35 +2,34 @@
title: es-hangul
---


import { useIsDarkMode } from '@/hooks/use-is-dark-mode';
import Image from 'next/image';
import { useTheme } from 'nextra-theme-docs';
import Link from 'next/link'

import { useTheme } from 'nextra-theme-docs';
import Link from 'next/link';

export default function HomePage() {
const isDarkMode = useIsDarkMode();

return (
<div className="pb-20">
<div className="flex flex-col items-center justify-center gap-8 pt-11 text-center">
<Image src={isDarkMode ? '/logo-white.png' : '/logo.png'} alt="logo" width={400} height={241} />
<span>{isDarkMode}</span>
<div className="flex flex-col items-center gap-4">
<div className="relative text-5xl font-bold">
<br />
<strong>한글, 이제는 심플하고 스마트하게</strong>
</div>
<br />
<p className="text-3xl">
한글을 쉽고, 선언적으로 다룰 수 있는 도구들을 제공합니다.
<br />
반복적이고 복잡한 부분은 es-hangul에 위임한 뒤, 비즈니스에 집중할 수 있습니다.
</p>
</div>
<div className="flex gap-4"></div>
</div>
return (

<div className="pb-20">
<div className="flex flex-col items-center justify-center gap-8 pt-11 text-center">
<Image src={isDarkMode ? '/logo-white.png' : '/logo.png'} alt="logo" width={400} height={241} />
<span>{isDarkMode}</span>
<div className="flex flex-col items-center gap-4">
<div className="relative text-5xl font-bold">
<br />
<strong>한글을 다루는 모던한 방법</strong>
</div>
<br />
<p className="text-3xl">
한글을 쉽고, 선언적으로 다룰 수 있는 도구들을 제공합니다.
<br />
반복적이고 복잡한 부분은 es-hangul에 위임한 뒤, 비즈니스에 집중할 수 있습니다.
</p>
</div>
<div className="flex gap-4"></div>
</div>

<div className="h-14"></div>
<div className="flex flex-col items-start justify-between gap-8 md:flex-row">
Expand All @@ -45,7 +44,8 @@ export default function HomePage() {
<div className="h-14"></div>
<Link href="/docs/story" className='flex justify-end no-underline'> <button className="rounded-xl bg-gray-800 px-16 py-5 text-xl font-bold dark:text-gray-100">API 바로가기</button></Link>
</div>
);

);
}

export const FEATURE_ITEMS = [
Expand Down

0 comments on commit 32664b1

Please sign in to comment.