Skip to content

Commit

Permalink
rewrite πŸš€
Browse files Browse the repository at this point in the history
  • Loading branch information
lareii committed Feb 22, 2024
1 parent 216d756 commit 9ebc961
Show file tree
Hide file tree
Showing 21 changed files with 1,169 additions and 680 deletions.
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node_modules
node_modules/
.DS_Store
.vscode
dist
.vscode/
dist/
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
![](/public/screenshot.png)
![](./public/screenshot.png)

# lareii.github.io
✨ My personal website.
# babaoglu.dev
🌐 My personal website.

## Getting Started
You can get started by cloning the project to your local machine. Make sure you have [Node.js](https://nodejs.org/) installed before you begin.

1. Clone the repository:

```bash
git clone https://github.com/lareii/lareii.github.io
git clone https://github.com/lareii/babaoglu.dev
```

2. Navigate to the project folder:
```bash
cd lareii.github.io
cd babaoglu.dev
```

3. Install the dependencies:
Expand Down
24 changes: 10 additions & 14 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,31 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>larei.is-a.dev</title>

<title>babaoglu.dev/</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="larei's personal website.">
<meta name="keywords" content="neubrutalism, portfolio, larei, vue, vue3, personal">
<meta name="keywords" content="babaoglu, emirhan, larei, lareii">
<meta name="author" content="larei">
<meta name="url" content="https://larei.is-a.dev">
<meta name="identifier-URL" content="https://larei.is-a.dev">

<meta name="twitter:title" content="larei.is-a.dev">
<meta name="url" content="https://babaoglu.dev">
<meta name="identifier-URL" content="https://babaoglu.dev">
<meta name="twitter:title" content="babaoglu.dev">
<meta name="twitter:description" content="larei's personal website.">
<meta name="twitter:image" content="/screenshot.png">
<meta name="twitter:card" content="/screenshot.png">

<meta property="og:title" content="larei.is-a.dev">
<meta property="og:title" content="babaoglu.dev">
<meta property="og:description" content="larei's personal website.">
<meta property="og:image" content="/screenshot.png" />
<meta property="og:url" content="https://larei.is-a.dev">
<meta property="og:site_name" content="larei.is-a.dev">
<meta property="og:url" content="https://babaoglu.dev">
<meta property="og:site_name" content="babaoglu.dev">
<meta property="og:type" content="website">

<script defer data-domain="larei.is-a.dev" src="https://analytics.is-a.dev/js/script.js"></script>
</head>
<body class="h-screen">
<body class="overflow-x-hidden bg-[var(--color-primary)] text-[var(--color-trinary)] font-mono">

<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
Expand Down
8 changes: 8 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"paths": {
"@/*": ["./src/*"]
}
},
"exclude": ["node_modules", "dist"]
}
Loading

0 comments on commit 9ebc961

Please sign in to comment.