Skip to content

Commit

Permalink
🔥 convert to vue
Browse files Browse the repository at this point in the history
here we go again, I mean I love Vue this site has been bad for years I guess this might be the time it all changes 🤷🏿‍♂️
  • Loading branch information
csc530 committed May 2, 2024
1 parent 405846d commit 98e8f89
Show file tree
Hide file tree
Showing 31 changed files with 5,449 additions and 58 deletions.
14 changes: 14 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution')

module.exports = {
root: true,
'extends': [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/eslint-config-typescript'
],
parserOptions: {
ecmaVersion: 'latest'
}
}
30 changes: 30 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
.DS_Store
dist
dist-ssr
coverage
*.local

/cypress/videos/
/cypress/screenshots/

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

*.tsbuildinfo
6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"recommendations": [
"Vue.volar",
"dbaeumer.vscode-eslint"
]
}
13 changes: 8 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"conventionalCommits.scopes": [
"Site",
"content"
]
}
"conventionalCommits.scopes": [
"Site",
"content"
],
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
}
}
1 change: 1 addition & 0 deletions env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/// <reference types="vite/client" />
63 changes: 10 additions & 53 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,56 +1,13 @@
<!DOCTYPE html>
<html>

<head>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The web site of christofer</title>
<!-- The style.css file allows you to change the look of your web pages.
If you include the next line in all your web pages, they will all share the same look.
This makes it easier to make new pages for your site. -->
<link href="/style.css" rel="stylesheet" type="text/css" media="all">
</head>

<body>

<header>
<h1>Welcome to my Website!</h1>
<nav>
<ul>
<!-- no where else to go right now :) -->
</ul>
</nav>
</header>


<h2>I wuv you ^_~</h2>

<main>
<p>now enough with the cringe and on to the... well uh nothing right now.</p>
<!-- <img src="https://media.giphy.com/media/MEp3vVlPowXh5rmTjQ/giphy.gif" alt="asian man chewing gum and shrugging cheekishly" /> -->
<div style="width:100%;height:0;padding-bottom:100%;position:relative;"><iframe
src="https://giphy.com/embed/MEp3vVlPowXh5rmTjQ" width="30%" height="30%" style="position:absolute"
frameborder="0" class="giphy-embed" allowfullscreen></iframe></div>
<p><a href="https://giphy.com/gifs/sorry-shrug-shrugging-MEp3vVlPowXh5rmTjQ">via GIPHY</a></p>
<p>Well until next time adventurer!! 😁😁</p>
</main>

<p>Here's how you can make <strong>bold</strong> and <em>italic</em> text.</p>

<p><small>I know it may not be much now but I hope it's all worth the wait :)</small></p>

<footer>
<p><small>&copy; 2023 Christofer Cousins</small></p>
<small>Created by Me for u😘 follow me <a href="followme.start">online</a></small>
<h2>stalk meee...🤫</h2>
<ul>
<li><a href="https://github.com/csc530">GitHub</a></li>
<li><a href="www.linkedin.com/in/christofer-cousins">LinkedIn</a></li>
<li><a href="https://www.instagram.com/cc.red530_0/">Instagram</a></li>
<li><a href="https://y.at/✝️🧠🍁👽"><em>y-at</em>-ch ya there😽</a></li>
<li><a href="https://linktr.ee/csc530">Linktree</a></li>
</ul>
</footer>
</body>

</html>
<title>Vite App</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
Loading

0 comments on commit 98e8f89

Please sign in to comment.