Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔖 Release version 1.0.2 #13

Merged
merged 10 commits into from
Mar 20, 2022
3 changes: 2 additions & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"semi": false,
"arrowParens": "avoid"
"arrowParens": "avoid",
"order": "smacss"
}
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# aassila.com

My personal webpage where you can find my projects and contact information.

## Install

```sh
npm install
```

## Development

```sh
npm run dev
```

## Lint

```sh
npm run lint
```

## Build

```sh
npm run build
```

## Preview

```sh
npm run preview
```
10 changes: 5 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="My personal webpage where you will find my projects and contact information."
content="My personal webpage where you can find my projects and contact information."
/>
<meta
name="keywords"
Expand Down Expand Up @@ -38,25 +38,25 @@ <h2 id="bio">Student and Computer Science Enthusiast</h2>
<li class="button">
<a href="https://twitter.com/younesaassila">
<i class="fa-brands fa-twitter"></i>
<span id="social-twitter">Twitter</span>
<span id="ya-social-twitter">Twitter</span>
</a>
</li>
<li class="button">
<a href="https://github.com/younesaassila">
<i class="fa-brands fa-github"></i>
<span id="social-github">GitHub</span>
<span id="ya-social-github">GitHub</span>
</a>
</li>
<li class="button">
<a href="https://www.linkedin.com/in/younes-aassila/">
<i class="fa-brands fa-linkedin"></i>
<span id="social-linkedin">LinkedIn</span>
<span id="ya-social-linkedin">LinkedIn</span>
</a>
</li>
<li class="button">
<a href="mailto:contact@aassila.com">
<i class="fa-solid fa-envelope"></i>
<span id="social-email">Email</span>
<span id="ya-social-email">Email</span>
</a>
</li>
</ul>
Expand Down
104 changes: 102 additions & 2 deletions package-lock.json

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

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "aassila.com",
"version": "1.0.1",
"description": "My personal webpage where you will find my projects and contact information.",
"version": "1.0.2",
"description": "My personal webpage where you can find my projects and contact information.",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
Expand All @@ -26,6 +26,7 @@
"homepage": "https://github.com/younesaassila/aassila.com#readme",
"devDependencies": {
"prettier": "^2.6.0",
"prettier-plugin-css-order": "^1.1.0",
"typescript": "^4.5.4",
"vite": "^2.8.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ document.documentElement.setAttribute("lang", locale.identifier)

const bioElement = document.getElementById("bio") as HTMLHeadingElement
const socialEmailElement = document.getElementById(
"social-email"
"ya-social-email"
) as HTMLSpanElement

bioElement.textContent = locale.getMessage("bio")
Expand Down
Loading