Skip to content

Commit

Permalink
Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gogglesgogs committed Oct 29, 2024
1 parent 6441c9e commit 106137b
Show file tree
Hide file tree
Showing 24 changed files with 6,500 additions and 4,901 deletions.
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
1 change: 0 additions & 1 deletion .nojekyll

This file was deleted.

75 changes: 75 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
Inspiration: https://www.nexxel.dev/
alt links (cloudflare):
• gogglesinc.pages.dev
• goggles.pages.dev

nav
home blog terminal
/nav

footer
goggles
(hidden)
blockquote
"Any application that can be written in JavaScript, will eventually be written in JavaScript." - Jeff Atwood • cite co-founder of Stack Overflow /cite
/blockquote
also here are some old versions of this website
ps: i dont
v1 v2
/footer

/, /home

main
goggles.gogs (hover: nguyen khoa)
hung yen, vietnam
high school student @ Greenfield School
i'm a 16 y/o teenager whos whos good at problem solving and interested in computer science. I'm currently learning web development to persue my dream career.
Skills:
• HTML
• CSS
• Javascript
• Nodejs
• React
• Express
Projects:
• gogglesgogs/todo-app
• gogglesgogs/gogglesgogs.github.io
• gogglesinc/gogglesinc.github.io
• gogglesinc/
• more projects (/github profile)
Blogs:
• {blog name} + {blog date}
• more blogs (/blog)
Contact me (via {link user hovered})
• email (hover(tooltip): ngkhoa0075@gmail.com)
• discord (hover(tooltip): goggles.gogs)
• github (hover(tooltip): gogglesgogs)
/main

/blogs

main
div
want more blogs or updates? subscribe. (hover:promise no spams)
form
{email}
subscribe
/form
/div
ul
li
[title](link)
{desc}
{date} + {views}
/li
/ul
/main
/blogs/:id
main
{title}
{date} + {views}
...
content
...
/main
4,759 changes: 0 additions & 4,759 deletions assets/goggles-svg-5c780966.svg

This file was deleted.

108 changes: 0 additions & 108 deletions assets/index-58811d4f.js

This file was deleted.

1 change: 0 additions & 1 deletion assets/index-99da8b1b.css

This file was deleted.

10 changes: 0 additions & 10 deletions assets/share-14a88147.svg

This file was deleted.

42 changes: 42 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
import react from "eslint-plugin-react";
import globals from "globals";
import reactHooks from "eslint-plugin-react-hooks";
import reactRefresh from "eslint-plugin-react-refresh";
import tseslint from "typescript-eslint";

export default tseslint.config(
{ ignores: ["dist"] },
{
settings: { react: { version: "18.3" } },

extends: [
tseslint.configs.recommendedTypeChecked,
...tseslint.configs.stylisticTypeChecked,
],
files: ["**/*.{ts,tsx}"],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
},
plugins: {
"react-hooks": reactHooks,
"react-refresh": reactRefresh,
react,
},
rules: {
...react.configs.recommended.rules,
...react.configs["jsx-runtime"].rules,
...reactHooks.configs.recommended.rules,
"react-refresh/only-export-components": [
"warn",
{ allowConstantExport: true },
],
},
languageOptions: {
parserOptions: {
project: ["./tsconfig.node.json", "./tsconfig.app.json"],
tsconfigRootDir: import.meta.dirname,
},
},
},
);
39 changes: 17 additions & 22 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,23 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Goggles" />
<meta name="description" content="Goggles's Profile Links" />
<meta property="og:title" content="Goggles's Profile" />
<meta property="og:description" content="A profile website made by Goggles" />
<meta property="og:url" content="/index.html" />
<meta property="og:site_name" content="Goggles's Profile" />
<meta name="twitter:card" content="" />
<meta name="twitter:image:alt" content="" />
<link rel="icon" type="image/svg+xml" href="/goggles-svg.svg" />
<title>Goggles's Profile</title>
<script type="module" crossorigin src="/assets/index-58811d4f.js"></script>
<link rel="stylesheet" href="/assets/index-99da8b1b.css">
</head>
<body>
<div id="app" data-theme=""></div>

</body>
<!doctype html>
<html
lang="en"
class="bg-neutral-100 text-black dark:bg-neutral-950 dark:text-white"
>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/goggles-svg.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Goggles Gogs</title>
</head>
<body
class="mx-4 mb-40 mt-8 flex max-w-2xl flex-col antialiased md:flex-row lg:mx-auto"
>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading

0 comments on commit 106137b

Please sign in to comment.