Barebones.
This commit is contained in:
commit
67bcf102d9
13 changed files with 6501 additions and 0 deletions
2
.eslintignore
Normal file
2
.eslintignore
Normal file
|
@ -0,0 +1,2 @@
|
|||
node_modules
|
||||
dist
|
21
.gitignore
vendored
Normal file
21
.gitignore
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
# build output
|
||||
dist/
|
||||
# generated types
|
||||
.astro/
|
||||
|
||||
# dependencies
|
||||
node_modules/
|
||||
|
||||
# logs
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
|
||||
# environment variables
|
||||
.env
|
||||
.env.production
|
||||
|
||||
# macOS-specific files
|
||||
.DS_Store
|
1
.npmrc
Normal file
1
.npmrc
Normal file
|
@ -0,0 +1 @@
|
|||
v20.6.1
|
4
.vscode/extensions.json
vendored
Normal file
4
.vscode/extensions.json
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"recommendations": ["astro-build.astro-vscode"],
|
||||
"unwantedRecommendations": []
|
||||
}
|
11
.vscode/launch.json
vendored
Normal file
11
.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"
|
||||
}
|
||||
]
|
||||
}
|
8
astro.config.mjs
Normal file
8
astro.config.mjs
Normal file
|
@ -0,0 +1,8 @@
|
|||
import { defineConfig } from 'astro/config';
|
||||
|
||||
import tailwind from "@astrojs/tailwind";
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
integrations: [tailwind()]
|
||||
});
|
6393
package-lock.json
generated
Normal file
6393
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
17
package.json
Normal file
17
package.json
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"name": "joehanson-dev",
|
||||
"type": "module",
|
||||
"version": "0.0.1",
|
||||
"scripts": {
|
||||
"dev": "astro dev",
|
||||
"start": "astro dev",
|
||||
"build": "astro build",
|
||||
"preview": "astro preview",
|
||||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/tailwind": "^5.0.0",
|
||||
"astro": "^3.1.0",
|
||||
"tailwindcss": "^3.3.3"
|
||||
}
|
||||
}
|
16
public/favicon.svg
Normal file
16
public/favicon.svg
Normal file
|
@ -0,0 +1,16 @@
|
|||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 432 432">
|
||||
<defs>
|
||||
<style>.cls-1{fill:#ed1c24;}</style>
|
||||
</defs>
|
||||
<title>JAH Logo</title>
|
||||
<polygon
|
||||
points="215.98 45.19 384.8 147.87 384.65 118.98 215.84 16.3 47.38 118.76 47.38 147.56 215.98 45.19" />
|
||||
<polygon
|
||||
points="215.84 390.97 384.65 288.28 384.65 317.08 215.84 419.77 47.38 317.3 47.38 288.5 215.84 390.97" />
|
||||
<polygon class="cls-1"
|
||||
points="129.69 107.08 129.69 144.94 211.54 95.07 211.67 57.12 129.69 107.08" />
|
||||
<polygon class="cls-1"
|
||||
points="179.28 321.38 79.86 260.81 79.44 182.29 47.38 201.82 47.38 278.66 211.41 378.5 211.41 376.41 211.54 101.72 179.09 121.58 179.28 321.38" />
|
||||
<polygon class="cls-1"
|
||||
points="352.66 298.15 384.68 278.68 384.65 157.73 352.13 137.88 352.33 199.78 252.6 199.98 252.6 77.52 220.15 57.66 220.33 378.5 252.6 358.67 252.6 232.42 352.44 231.83 352.66 298.15" />
|
||||
</svg>
|
After Width: | Height: | Size: 968 B |
1
src/env.d.ts
vendored
Normal file
1
src/env.d.ts
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/// <reference types="astro/client" />
|
16
src/pages/index.astro
Normal file
16
src/pages/index.astro
Normal file
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
|
||||
---
|
||||
|
||||
<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>Joseph Hanson</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>joehanson.dev</h1>
|
||||
</body>
|
||||
</html>
|
8
tailwind.config.cjs
Normal file
8
tailwind.config.cjs
Normal file
|
@ -0,0 +1,8 @@
|
|||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
3
tsconfig.json
Normal file
3
tsconfig.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"extends": "astro/tsconfigs/strict"
|
||||
}
|
Loading…
Reference in a new issue