diff --git a/public/logos/angular.svg b/public/logos/angular.svg new file mode 100644 index 0000000..aa4af69 --- /dev/null +++ b/public/logos/angular.svg @@ -0,0 +1 @@ +Angular diff --git a/public/logos/browser.svg b/public/logos/browser.svg new file mode 100644 index 0000000..f41e087 --- /dev/null +++ b/public/logos/browser.svg @@ -0,0 +1 @@ + diff --git a/public/logos/dotnet.svg b/public/logos/dotnet.svg new file mode 100644 index 0000000..d204a09 --- /dev/null +++ b/public/logos/dotnet.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/logos/java.svg b/public/logos/java.svg new file mode 100644 index 0000000..e0ed630 --- /dev/null +++ b/public/logos/java.svg @@ -0,0 +1 @@ +OpenJDK diff --git a/public/logos/nodejs.svg b/public/logos/nodejs.svg new file mode 100644 index 0000000..0634652 --- /dev/null +++ b/public/logos/nodejs.svg @@ -0,0 +1 @@ +Node.js diff --git a/public/logos/python.svg b/public/logos/python.svg new file mode 100644 index 0000000..24124e8 --- /dev/null +++ b/public/logos/python.svg @@ -0,0 +1 @@ +Python diff --git a/public/logos/react.svg b/public/logos/react.svg new file mode 100644 index 0000000..7da549d --- /dev/null +++ b/public/logos/react.svg @@ -0,0 +1 @@ +React diff --git a/public/logos/rest-api.svg b/public/logos/rest-api.svg new file mode 100644 index 0000000..39fc4f1 --- /dev/null +++ b/public/logos/rest-api.svg @@ -0,0 +1 @@ + diff --git a/src/pages/index.astro b/src/pages/index.astro index c66fb3b..be517ab 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -227,17 +227,17 @@ import Layout from '../layouts/Layout.astro';

{[ - { name: '.NET', icon: '⚙️' }, - { name: 'Node.js', icon: '🟢' }, - { name: 'Python', icon: '🐍' }, - { name: 'Java', icon: '☕' }, - { name: 'React', icon: '⚛️' }, - { name: 'Angular', icon: '🅰️' }, - { name: 'Browser', icon: '🌐' }, - { name: 'Any REST API', icon: '🔗' }, + { name: '.NET', icon: `${import.meta.env.BASE_URL}logos/dotnet.svg` }, + { name: 'Node.js', icon: `${import.meta.env.BASE_URL}logos/nodejs.svg` }, + { name: 'Python', icon: `${import.meta.env.BASE_URL}logos/python.svg` }, + { name: 'Java', icon: `${import.meta.env.BASE_URL}logos/java.svg` }, + { name: 'React', icon: `${import.meta.env.BASE_URL}logos/react.svg` }, + { name: 'Angular', icon: `${import.meta.env.BASE_URL}logos/angular.svg` }, + { name: 'Browser', icon: `${import.meta.env.BASE_URL}logos/browser.svg` }, + { name: 'Any REST API', icon: `${import.meta.env.BASE_URL}logos/rest-api.svg` }, ].map((tech) => (
- +

{tech.name}

))}