This commit is contained in:
Kaan Barmore-Genç 2023-11-18 11:09:07 -06:00
commit f2f0b0e574
Signed by: kaan
GPG key ID: B2E280771CD62FCF
23 changed files with 417 additions and 0 deletions

13
.eslintignore Normal file
View file

@ -0,0 +1,13 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example
# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
package-lock.json
yarn.lock

30
.eslintrc.cjs Normal file
View file

@ -0,0 +1,30 @@
module.exports = {
root: true,
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:svelte/recommended',
'prettier'
],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
parserOptions: {
sourceType: 'module',
ecmaVersion: 2020,
extraFileExtensions: ['.svelte']
},
env: {
browser: true,
es2017: true,
node: true
},
overrides: [
{
files: ['*.svelte'],
parser: 'svelte-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser'
}
}
]
};

1
.gitattributes vendored Normal file
View file

@ -0,0 +1 @@
*.png filter=lfs diff=lfs merge=lfs -text

10
.gitignore vendored Normal file
View file

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

1
.npmrc Normal file
View file

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

13
.prettierignore Normal file
View file

@ -0,0 +1,13 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example
# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
package-lock.json
yarn.lock

8
.prettierrc Normal file
View file

@ -0,0 +1,8 @@
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"plugins": ["prettier-plugin-svelte"],
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
}

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/master/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.

BIN
bun.lockb Executable file

Binary file not shown.

34
package.json Normal file
View file

@ -0,0 +1,34 @@
{
"name": "bgenc.net-new",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
},
"devDependencies": {
"@sveltejs/adapter-auto": "^2.1.1",
"@sveltejs/kit": "^1.27.6",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.35.0",
"prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.1.0",
"svelte": "^4.2.5",
"svelte-check": "^3.6.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^4.4.2"
},
"type": "module",
"dependencies": {
"mdsvex": "^0.11.0"
}
}

72
src/app.css Normal file
View file

@ -0,0 +1,72 @@
html {
--color-primary-h: 49;
--color-primary-s: 79%;
--color-primary-l: 53%;
--color-primary: hsl(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l));
--color-secondary-h: 27;
--color-secondary-s: 96%;
--color-secondary-l: 48%;
--color-secondary: hsl(var(--color-secondary-h), var(--color-secondary-s), var(--color-secondary-l));
--color-tertiary-h: 191;
--color-tertiary-s: 55%;
--color-tertiary-l: 53%;
--color-tertiary: hsl(var(--color-tertiary-h), var(--color-tertiary-s), var(--color-tertiary-l));
--color-quaternary-h: 241;
--color-quaternary-s: 48%;
--color-quaternary-l: 41%;
--color-quaternary: hsl(var(--color-quaternary-h), var(--color-quaternary-s), var(--color-quaternary-l));
--color-quinary-h: 237;
--color-quinary-s: 97%;
--color-quinary-l: 27%;
--color-quinary: hsl(var(--color-quinary-h), var(--color-quinary-s), var(--color-quinary-l));
--color-text-h: 0;
--color-text-s: 0%;
--color-text-l: 0%;
--color-text: hsl(var(--color-text-h), var(--color-text-s), var(--color-text-l));
--color-bg-h: 0;
--color-bg-s: 0%;
--color-bg-l: 100%;
--color-bg: hsl(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l));
--size-container: 640px;
background-color: var(--color-bg);
color: var(--color-text);
}
/* Reset */
*, *::before, *::after {
box-sizing: border-box;
font-size: 16px;
}
* {
margin: 0;
padding: 0;
font-weight: normal;
}
body {
line-height: 1.5;
-webkit-font-smoothing: antialiased;
font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
}
img, picture, video, canvas, svg {
display: block;
max-width: 100%;
height: auto;
}
input, button, textarea, select {
font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
overflow-wrap: break-word;
}
ol, ul {
list-style: none;
}
body {
min-height: 100vh;
display: flex;
flex-direction: column;
}

12
src/app.d.ts vendored Normal file
View file

@ -0,0 +1,12 @@
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
// interface Locals {}
// interface PageData {}
// 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>

1
src/lib/index.ts Normal file
View file

@ -0,0 +1 @@
// place files you want to import through the `$lib` alias in this folder.

7
src/lib/spacer.svelte Normal file
View file

@ -0,0 +1,7 @@
<div class="spacer" />
<style>
.spacer {
flex-grow: 1;
}
</style>

11
src/routes/+layout.svelte Normal file
View file

@ -0,0 +1,11 @@
<script lang="ts">
import Spacer from '$lib/spacer.svelte';
import '../app.css';
import Footer from './footer.svelte';
import Header from './header.svelte';
</script>
<Header />
<main><slot /></main>
<Spacer />
<Footer />

9
src/routes/+page.svelte Normal file
View file

@ -0,0 +1,9 @@
<script lang="ts">
const x = 1;
const y = 2;
const z = 3;
const p = 0;
</script>
<h1>Welcome to SvelteKit</h1>
<p>Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the documentation</p>

55
src/routes/footer.svelte Normal file
View file

@ -0,0 +1,55 @@
<footer>
<div class="row">
<div>
Contents are licensed under <a
rel="license"
href="http://creativecommons.org/licenses/by/4.0/">CC 4.0</a
>
unless specified otherwise.<br />Source code for this website is available at
<a href="https://gitea.bgenc.net/kaan/bgenc.net">gitea.bgenc.net</a>.
</div>
<div class="rss"><a href="/posts/index.xml" target="_blank" title="rss">RSS</a></div>
</div>
<div>
<div>
This website is available at <a href="https://bgenc.net">bgenc.net</a>, or as an onion service
at
<a href="http://bgenc2iv62mumkhu2p564vxtao6ha7ihavmzwpetkmazgq6av7zvfwyd.onion/"
>bgenc2iv62mumkhu2p564vxtao6ha7ihavmzwpetkmazgq6av7zvfwyd.onion</a
>
which you can view through the
<a href="https://www.torproject.org/download/" target="_blank">Tor browser</a>.
</div>
</div>
</footer>
<style>
footer {
max-width: var(--size-container);
margin: 4rem auto;
display: flex;
flex-direction: column;
gap: 2rem;
transition: opacity 0.2s ease-in-out;
opacity: 0.8;
}
footer:hover,
footer:focus-within {
opacity: 1;
}
.row {
display: flex;
flex-direction: row;
align-items: center;
}
.row > * {
flex-grow: 1;
flex-shrink: 1;
}
.rss {
text-align: center;
}
</style>

37
src/routes/header.svelte Normal file
View file

@ -0,0 +1,37 @@
<script>
import Spacer from '$lib/spacer.svelte';
</script>
<header>
<div class="title">Kaan Barmore-Genç</div>
<Spacer />
<a href="/foo">Portfolio</a>
<a href="/foo">Blog</a>
</header>
<style>
header {
max-width: calc(var(--size-container) * 2);
margin: 2rem auto;
display: flex;
flex-direction: row;
gap: 2rem;
}
.title::before {
content: '> ';
}
.title::after {
content: ' █';
color: var(--color-tertiary);
}
.title {
font-family:
Menlo,
Consolas,
Monaco,
Liberation Mono,
Lucida Console,
monospace;
}
</style>

BIN
static/favicon.png (Stored with Git LFS) Normal file

Binary file not shown.

26
svelte.config.js Normal file
View file

@ -0,0 +1,26 @@
import adapter from '@sveltejs/adapter-auto';
import { vitePreprocess } from '@sveltejs/kit/vite';
import { mdsvex } from 'mdsvex';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors
preprocess: [
vitePreprocess(),
mdsvex({
extensions: ['.md']
})
],
extensions: ['.svelte', '.md'],
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;

18
tsconfig.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
//
// 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
}

6
vite.config.ts Normal file
View file

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