첫 커밋

This commit is contained in:
Pma10 2024-02-10 21:54:43 +09:00
commit 90861de104
19 changed files with 2369 additions and 0 deletions

12
.gitignore vendored Normal file
View File

@ -0,0 +1,12 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example
.vercel
.output
vite.config.js.timestamp-*
vite.config.ts.timestamp-*

1
.npmrc Normal file
View File

@ -0,0 +1 @@
engine-strict=true

38
README.md Normal file
View File

@ -0,0 +1,38 @@
# create-svelte
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/main/packages/create-svelte).
## Creating a project
If you're seeing this, you've probably already done this step. Congrats!
```bash
# create a new project in the current directory
npm create svelte@latest
# create a new project in my-app
npm create svelte@latest my-app
```
## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
```
## Building
To create a production version of your app:
```bash
npm run build
```
You can preview the production build with `npm run preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.

18
jsconfig.json Normal file
View File

@ -0,0 +1,18 @@
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"moduleResolution": "bundler"
}
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias and https://kit.svelte.dev/docs/configuration#files
//
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
// from the referenced tsconfig.json - TypeScript does not merge them in
}

1921
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

23
package.json Normal file
View File

@ -0,0 +1,23 @@
{
"name": "shop",
"version": "0.0.1",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch"
},
"devDependencies": {
"@fontsource/fira-mono": "^4.5.10",
"@neoconfetti/svelte": "^1.0.0",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"svelte": "^4.2.7",
"svelte-check": "^3.6.0",
"typescript": "^5.0.0",
"vite": "^5.0.3"
},
"type": "module"
}

13
src/app.d.ts vendored Normal file
View File

@ -0,0 +1,13 @@
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
// interface Locals {}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
}
export {};

12
src/app.html Normal file
View File

@ -0,0 +1,12 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>

BIN
src/lib/images/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

24
src/routes/+layout.svelte Normal file
View File

@ -0,0 +1,24 @@
<script>
import Header from './Header.svelte';
import Page from './+page.svelte';
import Footer from './Footer.svelte';
</script>
<div class="app">
<Header/>
<main>
<Page />
</main>
<footer>
<Footer />
</footer>
</div>
<style>
:global(body){
background-color: #181818;
}
</style>

3
src/routes/+page.js Normal file
View File

@ -0,0 +1,3 @@
// since there's no dynamic data here, we can prerender
// it so that it gets served as a static asset in production
export const prerender = true;

54
src/routes/+page.svelte Normal file
View File

@ -0,0 +1,54 @@
<script>
</script>
<svelte:head>
<title>메인</title>
<meta name="description" content="Svelte demo app" />
</svelte:head>
<ul class="items-list">
<li>
<div>
<h3>PMA</h3>
<p>프마를 소개합니다</p>
</div>
</li>
<li>
<div>
<h3></h3>
<p>나를 소개합니다</p>
</div>
</li>
<li>
<div>
<h3></h3>
<p>너를 소개합니다</p>
</div>
</li>
</ul>
<style>
.items-list{
color: #e6e7eb;
list-style: none;
display: flex;
align-items: center;
justify-content: center;
}
.items-list li div{
background-color: #303034;
margin-right: 3em;
width: 15em;
border-radius: 1em;
text-align: center;
padding: 12em 0;
transition: background-color 0.2s linear;
}
.items-list li div:hover{
background-color: #42424d;
}
::selection{
background: rgb(168, 166, 166);
}
</style>

22
src/routes/Footer.svelte Normal file
View File

@ -0,0 +1,22 @@
<script>
</script>
<footer>
<p>Made By Pma</p>
</footer>
<style>
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
footer{
margin-top: 8em;
font-family: 'Pretendard Variable';
font-weight: 400;
color: #FFFFFF;
display: flex;
justify-content: center;
}
::selection{
background: rgb(168, 166, 166);
}
</style>

99
src/routes/Header.svelte Normal file
View File

@ -0,0 +1,99 @@
<script>
import logo from '$lib/images/logo.png';
</script>
<header>
<div class="nav-logo">
<a href="/">
<img src={logo} alt="logo" />
</a>
</div>
<nav>
<ul>
<li>
<a href="/">메인</a>
</li>
<li>
<a href="/about">찾아보기</a>
</li>
<li>
<a href="/help">도움</a>
</li>
</ul>
</nav>
</header>
<style>
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
header {
font-family: 'Pretendard Variable';
font-weight: 700;
color: aliceblue;
display: flex;
justify-content: space-between;
}
::selection{
background: rgb(168, 166, 166);
}
.nav-logo {
width: 3em;
height: 3em;
}
.nav-logo a {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
.nav-logo img{
width: 5em;
height: 6.5em;
object-fit: contain;
}
nav {
display: flex;
justify-content: center;
}
ul {
position: relative;
padding: 0;
margin: 0;
height: 3em;
display: flex;
justify-content: center;
align-items: center;
list-style: none;
}
li {
position: relative;
height: 100%;
}
nav a {
display: flex;
height: 100%;
align-items: center;
margin-right: 1em;
padding: 0 1em;
text-decoration: none;
transition: color 0.2s linear;
transition: background-color 0.2s linear;
color: rgba(231, 231, 224, 0.945);
}
a:hover {
color: #FFFFFF;
background-color: #42424d;
border-radius: 5px;
}
</style>

107
src/routes/styles.css Normal file
View File

@ -0,0 +1,107 @@
@import '@fontsource/fira-mono';
:root {
--font-body: Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
--font-mono: 'Fira Mono', monospace;
--color-bg-0: rgb(202, 216, 228);
--color-bg-1: hsl(209, 36%, 86%);
--color-bg-2: hsl(224, 44%, 95%);
--color-theme-1: #ff3e00;
--color-theme-2: #4075a6;
--color-text: rgba(0, 0, 0, 0.7);
--column-width: 42rem;
--column-margin-top: 4rem;
font-family: var(--font-body);
color: var(--color-text);
}
body {
min-height: 100vh;
margin: 0;
background-attachment: fixed;
background-color: var(--color-bg-1);
background-size: 100vw 100vh;
background-image: radial-gradient(
50% 50% at 50% 50%,
rgba(255, 255, 255, 0.75) 0%,
rgba(255, 255, 255, 0) 100%
),
linear-gradient(180deg, var(--color-bg-0) 0%, var(--color-bg-1) 15%, var(--color-bg-2) 50%);
}
h1,
h2,
p {
font-weight: 400;
}
p {
line-height: 1.5;
}
a {
color: var(--color-theme-1);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
h1 {
font-size: 2rem;
text-align: center;
}
h2 {
font-size: 1rem;
}
pre {
font-size: 16px;
font-family: var(--font-mono);
background-color: rgba(255, 255, 255, 0.45);
border-radius: 3px;
box-shadow: 2px 2px 6px rgb(255 255 255 / 25%);
padding: 0.5em;
overflow-x: auto;
color: var(--color-text);
}
.text-column {
display: flex;
max-width: 48rem;
flex: 0.6;
flex-direction: column;
justify-content: center;
margin: 0 auto;
}
input,
button {
font-size: inherit;
font-family: inherit;
}
button:focus:not(:focus-visible) {
outline: none;
}
@media (min-width: 720px) {
h1 {
font-size: 2.4rem;
}
}
.visually-hidden {
border: 0;
clip: rect(0 0 0 0);
height: auto;
margin: 0;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
white-space: nowrap;
}

BIN
static/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

3
static/robots.txt Normal file
View File

@ -0,0 +1,3 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:

13
svelte.config.js Normal file
View File

@ -0,0 +1,13 @@
import adapter from '@sveltejs/adapter-auto';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
// If your environment is not supported or you settled on a specific environment, switch out the adapter.
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
adapter: adapter()
}
};
export default config;

6
vite.config.js Normal file
View File

@ -0,0 +1,6 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [sveltekit()]
});