-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
2,600 additions
and
3,177 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
export default defineI18nConfig(() => ({ | ||
legacy: false, | ||
locale: 'en', | ||
messages: { | ||
en: { | ||
hi: 'Hi there 👋, I’m', | ||
work: 'web developer and designer.', | ||
aboutDesc: 'I’m a student and freelance in the realms of sysadmin, web development and design. I believe in the power of technology to catalyze radical change.', | ||
articleListDesc: 'articles i’ve written', | ||
viewAll: 'See more', | ||
projectsListDesc: 'ventures i’m working on', | ||
organizationsListDesc: 'organizations i’ve been involved in' | ||
}, | ||
fr: { | ||
hi: 'Salut 👋, je suis', | ||
work: 'développeur web et designer.', | ||
aboutDesc: 'Je suis un étudiant et, en parallèle, freelance dans le domaine du développement et du design web. Je crois en la puissance de la technologie pour catalyser un changement radical.', | ||
articleListDesc: 'articles que j’ai écrit', | ||
viewAll: 'Voir plus', | ||
projectsListDesc: 'projets sur lesquels je travaille', | ||
organizationsListDesc: 'organisations dans lesquelles j’ai été impliqué' | ||
} | ||
} | ||
})) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,69 +1,77 @@ | ||
export default defineNuxtConfig({ | ||
modules: [ | ||
'@nuxt/image-edge', | ||
'@nuxtjs/google-fonts', | ||
'nuxt-schema-org', | ||
'@nuxtjs/sitemap', | ||
'@vueuse/nuxt', | ||
'nuxt-icon' | ||
], | ||
modules: [ | ||
'@nuxt/image-edge', | ||
'@nuxtjs/google-fonts', | ||
'nuxt-schema-org', | ||
'@nuxtjs/sitemap', | ||
'@vueuse/nuxt', | ||
'nuxt-icon', | ||
"@nuxtjs/i18n" | ||
], | ||
|
||
build: { | ||
transpile: ['vue-notion'], | ||
}, | ||
i18n: { | ||
locales: ['en', 'fr'], | ||
defaultLocale: 'fr', | ||
vueI18n: './i18n.config.ts' | ||
}, | ||
|
||
routeRules: { | ||
'/': {prerender: true}, | ||
'/articles': {prerender: true}, | ||
}, | ||
build: { | ||
transpile: ['vue-notion'], | ||
}, | ||
|
||
image: { | ||
format: ['avif', 'webp', 'jpg'], | ||
provider: 'ipx', | ||
ipx: { | ||
modifiers: { | ||
format: 'avif', | ||
}, | ||
}, | ||
}, | ||
routeRules: { | ||
'/': {prerender: true}, | ||
'/articles': {prerender: true}, | ||
}, | ||
|
||
app: { | ||
head: { | ||
title: 'Eban Rami', | ||
meta: [ | ||
{charset: 'utf-8'}, | ||
{name: 'viewport', content: 'width=device-width, initial-scale=1'}, | ||
{name: 'theme-color', content: '#2E6934'}, | ||
{name: 'apple-mobile-web-app-status-bar-style', content: '#2E6934'}, | ||
{name: 'lang', content: 'fr'}, | ||
{name: 'author', content: 'Eban Rami'}, | ||
{name: 'description', content: 'i’m a student building in the realms of sysadmin, web development, and cybersecurity to catalyze radical change'} | ||
], | ||
htmlAttrs: { | ||
lang: 'fr' | ||
} | ||
} | ||
}, | ||
image: { | ||
format: ['avif', 'webp', 'jpg'], | ||
provider: 'ipx', | ||
ipx: { | ||
modifiers: { | ||
format: 'avif', | ||
}, | ||
}, | ||
}, | ||
|
||
app: { | ||
head: { | ||
title: 'Eban Rami', | ||
meta: [ | ||
{charset: 'utf-8'}, | ||
{name: 'viewport', content: 'width=device-width, initial-scale=1'}, | ||
{name: 'theme-color', content: '#2E6934'}, | ||
{name: 'apple-mobile-web-app-status-bar-style', content: '#2E6934'}, | ||
{name: 'lang', content: 'fr'}, | ||
{name: 'author', content: 'Eban Rami'}, | ||
{name: 'description', content: 'i’m a student building in the realms of sysadmin, web development, and cybersecurity to catalyze radical change'} | ||
], | ||
htmlAttrs: { | ||
lang: 'fr' | ||
} | ||
} | ||
}, | ||
|
||
site: { | ||
url: 'https://eban.eu.org', | ||
}, | ||
site: { | ||
url: 'https://eban.eu.org', | ||
}, | ||
|
||
sitemap: { | ||
discoverImages: false | ||
}, | ||
sitemap: { | ||
discoverImages: false | ||
}, | ||
|
||
googleFonts: { | ||
download: true, | ||
families: { | ||
'Poppins': [100, 200, 300, 400, 500, 600, 700, 800], | ||
'DM Serif Display': true | ||
} | ||
}, | ||
googleFonts: { | ||
download: true, | ||
families: { | ||
'Poppins': [100, 200, 300, 400, 500, 600, 700, 800], | ||
'DM Serif Display': true | ||
} | ||
}, | ||
|
||
css: [ | ||
'normalize.css/normalize.css', | ||
'@/assets/scss/main.scss', | ||
], | ||
}) | ||
css: [ | ||
'normalize.css/normalize.css', | ||
'@/assets/scss/main.scss', | ||
], | ||
|
||
compatibilityDate: '2024-07-12', | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<template> | ||
<TopNav/> | ||
<About/> | ||
<InlineArticles/> | ||
<Projects /> | ||
<Organizations/> | ||
</template> | ||
<InlineArticles/> | ||
</template> |
Oops, something went wrong.