gex!
This commit is contained in:
parent
d1017f45cf
commit
01f671f2fb
15 changed files with 8866 additions and 125 deletions
139
.gitignore
vendored
139
.gitignore
vendored
|
@ -1,132 +1,21 @@
|
|||
# ---> Node
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
# build output
|
||||
dist/
|
||||
# generated types
|
||||
.astro/
|
||||
|
||||
# dependencies
|
||||
node_modules/
|
||||
|
||||
# logs
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
lerna-debug.log*
|
||||
.pnpm-debug.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
# Diagnostic reports (https://nodejs.org/api/report.html)
|
||||
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
||||
|
||||
# Runtime data
|
||||
pids
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
|
||||
# Directory for instrumented libs generated by jscoverage/JSCover
|
||||
lib-cov
|
||||
|
||||
# Coverage directory used by tools like istanbul
|
||||
coverage
|
||||
*.lcov
|
||||
|
||||
# nyc test coverage
|
||||
.nyc_output
|
||||
|
||||
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
||||
.grunt
|
||||
|
||||
# Bower dependency directory (https://bower.io/)
|
||||
bower_components
|
||||
|
||||
# node-waf configuration
|
||||
.lock-wscript
|
||||
|
||||
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
||||
build/Release
|
||||
|
||||
# Dependency directories
|
||||
node_modules/
|
||||
jspm_packages/
|
||||
|
||||
# Snowpack dependency directory (https://snowpack.dev/)
|
||||
web_modules/
|
||||
|
||||
# TypeScript cache
|
||||
*.tsbuildinfo
|
||||
|
||||
# Optional npm cache directory
|
||||
.npm
|
||||
|
||||
# Optional eslint cache
|
||||
.eslintcache
|
||||
|
||||
# Optional stylelint cache
|
||||
.stylelintcache
|
||||
|
||||
# Microbundle cache
|
||||
.rpt2_cache/
|
||||
.rts2_cache_cjs/
|
||||
.rts2_cache_es/
|
||||
.rts2_cache_umd/
|
||||
|
||||
# Optional REPL history
|
||||
.node_repl_history
|
||||
|
||||
# Output of 'npm pack'
|
||||
*.tgz
|
||||
|
||||
# Yarn Integrity file
|
||||
.yarn-integrity
|
||||
|
||||
# dotenv environment variable files
|
||||
# environment variables
|
||||
.env
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
.env.local
|
||||
|
||||
# parcel-bundler cache (https://parceljs.org/)
|
||||
.cache
|
||||
.parcel-cache
|
||||
|
||||
# Next.js build output
|
||||
.next
|
||||
out
|
||||
|
||||
# Nuxt.js build / generate output
|
||||
.nuxt
|
||||
dist
|
||||
|
||||
# Gatsby files
|
||||
.cache/
|
||||
# Comment in the public line in if your project uses Gatsby and not Next.js
|
||||
# https://nextjs.org/blog/next-9-1#public-directory-support
|
||||
# public
|
||||
|
||||
# vuepress build output
|
||||
.vuepress/dist
|
||||
|
||||
# vuepress v2.x temp and cache directory
|
||||
.temp
|
||||
.cache
|
||||
|
||||
# Docusaurus cache and generated files
|
||||
.docusaurus
|
||||
|
||||
# Serverless directories
|
||||
.serverless/
|
||||
|
||||
# FuseBox cache
|
||||
.fusebox/
|
||||
|
||||
# DynamoDB Local files
|
||||
.dynamodb/
|
||||
|
||||
# TernJS port file
|
||||
.tern-port
|
||||
|
||||
# Stores VSCode versions used for testing VSCode extensions
|
||||
.vscode-test
|
||||
|
||||
# yarn v2
|
||||
.yarn/cache
|
||||
.yarn/unplugged
|
||||
.yarn/build-state.yml
|
||||
.yarn/install-state.gz
|
||||
.pnp.*
|
||||
.env.production
|
||||
|
||||
# macOS-specific files
|
||||
.DS_Store
|
||||
|
|
4
App/.vscode/extensions.json
vendored
Normal file
4
App/.vscode/extensions.json
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"recommendations": ["astro-build.astro-vscode"],
|
||||
"unwantedRecommendations": []
|
||||
}
|
11
App/.vscode/launch.json
vendored
Normal file
11
App/.vscode/launch.json
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"command": "./node_modules/.bin/astro dev",
|
||||
"name": "Development server",
|
||||
"request": "launch",
|
||||
"type": "node-terminal"
|
||||
}
|
||||
]
|
||||
}
|
4
App/astro.config.mjs
Normal file
4
App/astro.config.mjs
Normal file
|
@ -0,0 +1,4 @@
|
|||
import { defineConfig } from 'astro/config';
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({});
|
8669
App/package-lock.json
generated
Normal file
8669
App/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
16
App/package.json
Normal file
16
App/package.json
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"name": "src",
|
||||
"type": "module",
|
||||
"version": "0.0.1",
|
||||
"scripts": {
|
||||
"dev": "astro dev",
|
||||
"start": "astro dev",
|
||||
"build": "astro build",
|
||||
"preview": "astro preview",
|
||||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astropub/md": "^0.2.0",
|
||||
"astro": "^2.7.2"
|
||||
}
|
||||
}
|
BIN
App/public/Assets/Homepage/desktop.png
Normal file
BIN
App/public/Assets/Homepage/desktop.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 MiB |
BIN
App/public/Assets/VictorMono-Regular.ttf
Normal file
BIN
App/public/Assets/VictorMono-Regular.ttf
Normal file
Binary file not shown.
9
App/public/favicon.svg
Normal file
9
App/public/favicon.svg
Normal file
|
@ -0,0 +1,9 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 128 128">
|
||||
<path d="M50.4 78.5a75.1 75.1 0 0 0-28.5 6.9l24.2-65.7c.7-2 1.9-3.2 3.4-3.2h29c1.5 0 2.7 1.2 3.4 3.2l24.2 65.7s-11.6-7-28.5-7L67 45.5c-.4-1.7-1.6-2.8-2.9-2.8-1.3 0-2.5 1.1-2.9 2.7L50.4 78.5Zm-1.1 28.2Zm-4.2-20.2c-2 6.6-.6 15.8 4.2 20.2a17.5 17.5 0 0 1 .2-.7 5.5 5.5 0 0 1 5.7-4.5c2.8.1 4.3 1.5 4.7 4.7.2 1.1.2 2.3.2 3.5v.4c0 2.7.7 5.2 2.2 7.4a13 13 0 0 0 5.7 4.9v-.3l-.2-.3c-1.8-5.6-.5-9.5 4.4-12.8l1.5-1a73 73 0 0 0 3.2-2.2 16 16 0 0 0 6.8-11.4c.3-2 .1-4-.6-6l-.8.6-1.6 1a37 37 0 0 1-22.4 2.7c-5-.7-9.7-2-13.2-6.2Z" />
|
||||
<style>
|
||||
path { fill: #000; }
|
||||
@media (prefers-color-scheme: dark) {
|
||||
path { fill: #FFF; }
|
||||
}
|
||||
</style>
|
||||
</svg>
|
After Width: | Height: | Size: 749 B |
84
App/src/Styles/index.css
Normal file
84
App/src/Styles/index.css
Normal file
|
@ -0,0 +1,84 @@
|
|||
@font-face {
|
||||
font-family: 'victor mono';
|
||||
src: url("/Assets/VictorMono-Regular.ttf");
|
||||
}
|
||||
|
||||
body{
|
||||
background-color: #282a36;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
#content {
|
||||
border-left: #44475a solid;
|
||||
border-right: #44475a solid;
|
||||
border-width: 1px;
|
||||
max-width: 800px;
|
||||
font-family: 'victor mono';
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
|
||||
#content h1 {
|
||||
color: #ff79c6
|
||||
}
|
||||
#content h1 strong{
|
||||
color: #bd93f9
|
||||
}
|
||||
|
||||
|
||||
#content p {
|
||||
color: #f8f8f2
|
||||
}
|
||||
|
||||
#content p strong {
|
||||
color: #bd93f9
|
||||
}
|
||||
|
||||
#content p i {
|
||||
color: #8be9fd
|
||||
}
|
||||
|
||||
#content p a {
|
||||
color: #ffb86c;
|
||||
font-style: normal;
|
||||
text-decoration:none
|
||||
}
|
||||
|
||||
#content .paragraphwpic {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
#content .paragraphwpic p {
|
||||
width: 30%;
|
||||
flex-grow: 1;
|
||||
margin-left: 5px;
|
||||
margin-right: 5px;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
#content .paragraphwpic img {
|
||||
width: 500px;
|
||||
height: 300px;
|
||||
margin-top: 5px;
|
||||
flex-shrink: 0;
|
||||
border: #44475a solid;
|
||||
border-width: 1px;
|
||||
margin-left: 5px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
hr { display: block; height: 1px;
|
||||
border: 0; border-top: 1px solid #44475a;
|
||||
margin: 0 0; padding: 0;
|
||||
}
|
||||
|
||||
.commandline{
|
||||
background-color: #44475a;
|
||||
}
|
||||
.commandline >*{
|
||||
color : #8be9fd!important
|
||||
}
|
1
App/src/env.d.ts
vendored
Normal file
1
App/src/env.d.ts
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/// <reference types="astro/client" />
|
0
App/src/layouts/BlogPost.astro
Normal file
0
App/src/layouts/BlogPost.astro
Normal file
48
App/src/pages/index.astro
Normal file
48
App/src/pages/index.astro
Normal file
|
@ -0,0 +1,48 @@
|
|||
---
|
||||
import "../Styles/index.css"
|
||||
---
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<meta name="generator" content={Astro.generator} />
|
||||
<title>Cakey's home directory</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="content">
|
||||
<h1>/home/<strong>alecake</strong></h1>
|
||||
<div id="intro">
|
||||
<div class="commandline">
|
||||
<p>cat ~/intro.md</p>
|
||||
</div>
|
||||
<p>
|
||||
Howdy~ I'm <strong>Ale</strong>, lot's of people know me as cake though.
|
||||
I'm somewhat of a software developer, though i enjoy doing basically
|
||||
anything that is actually fun.
|
||||
</p>
|
||||
<hr>
|
||||
|
||||
<div class="commandline">
|
||||
<p>cat ~/intropart2idk.md</p>
|
||||
</div>
|
||||
|
||||
<span class="paragraphwpic">
|
||||
<p>
|
||||
If you are my friend you may already know, but I'm very much obsessed
|
||||
with open source crap, that's why this website is hosted on my git istance,
|
||||
and that's why i use linux, specifically, i'm using <a href="https://get.opensuse.org/tumbleweed/">opensuse tumbleweed</a>
|
||||
in this screenshot and i'd say that it is quite the nice distro overall, though i did have some issues with gnome and
|
||||
nautilus not working exactly <i>nicely</i> after an update.
|
||||
</p>
|
||||
<img src="/Assets/Homepage/desktop.png">
|
||||
</span>
|
||||
<p>
|
||||
As you might have noticed, dear reader, i <i>like</i> evangelion
|
||||
and with like, i mean that it's one of my favorite pieces of media ever.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
3
App/tsconfig (conflicted copy 2023-07-04 200638).json
Normal file
3
App/tsconfig (conflicted copy 2023-07-04 200638).json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"extends": "astro/tsconfigs/strict"
|
||||
}
|
3
App/tsconfig.json
Normal file
3
App/tsconfig.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"extends": "astro/tsconfigs/base"
|
||||
}
|
Loading…
Reference in a new issue