Skip to content

Commit

Permalink
added meili, fixed small height issue and added mailto to email address
Browse files Browse the repository at this point in the history
  • Loading branch information
Barabasbalazs committed Oct 21, 2024
1 parent 584f72a commit 29b0896
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 19 deletions.
Binary file added assets/app/images/meili-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion components/swiper/Container.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div ref="wrapper" class="w-full wrapper-height">
<div ref="wrapper" class="w-full wrapper-height h-full">
<swiper
class="w-full h-full"
pagination
Expand Down
2 changes: 1 addition & 1 deletion components/swiper/Content.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="relative w-full">
<div class="relative w-full h-full">
<div class="flex flex-col justify-between gap-6 h-full pb-12">
<NuxtLink
class="flex items-center justify-center w-full h-full"
Expand Down
2 changes: 1 addition & 1 deletion constants/contact-items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const contactItems: OptionsItem[] = [
},
{
text: "Email",
link: "[email protected]",
link: "mailto:[email protected]",
},
{
text: "LinkedIn",
Expand Down
42 changes: 26 additions & 16 deletions constants/project-items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import b2bMockup from "~/assets/app/images/b2b-mockup.png";
import esmImport from "~/assets/app/images/esm-import.png";
import mapAppMockup from "~/assets/app/images/map-app-mockup.png";
import ocrMockUp from "~/assets/app/images/ocr-mockup.png";
import meiliLogo from "~/assets/app/images/meili-logo.png";

export interface OptionsItem {
text: string;
Expand Down Expand Up @@ -29,6 +30,21 @@ export const projectItems: ProjectItem[] = [
img: b2bMockup,
link: "https://b2b.bickleyandmitchell.com",
},
{
key: "esm-import-modifier",
title: "esm-import-modifier",
subtitle: "Deno utility script",
description:
"A powerful utility script that simplifies rewriting ES imports using just a config file. Built in Deno, leveraging an ES syntax module lexer and Worker modules for efficiency.",
img: esmImport,
link: "https://github.com/Barabasbalazs/esm-import-modifier",
options: [
{
text: "View source code",
link: "https://github.com/Barabasbalazs/esm-import-modifier",
},
],
},
{
key: "ocr",
title: "Optical Character Recognition",
Expand All @@ -44,14 +60,23 @@ export const projectItems: ProjectItem[] = [
},
],
},
{
key: "meilisearch",
title: "Meilisearch-js",
subtitle: "Search engine client",
description:
"Open-source JavaScript client for Meilisearch, a flexible and powerful user-focused search engine that can be added to any website or application.",
img: meiliLogo,
link: "https://github.com/meilisearch/meilisearch-js",
},
{
key: "mapapp",
title: "Map based hiking Application",
subtitle: "Full Stack app with real time Tracking",
description:
"An intuitive web app with real-time tracking, helping tourists and guides explore and navigate both natural landscapes and urban areas with ease and efficiency.",
img: mapAppMockup,
link: "https://balazsmap.live",
link: "https://github.com/Barabasbalazs/map-frontend",
options: [
{
text: "Download Thesis as PDF",
Expand All @@ -68,19 +93,4 @@ export const projectItems: ProjectItem[] = [
},
],
},
{
key: "esm-import-modifier",
title: "esm-import-modifier",
subtitle: "Deno utility script",
description:
"A powerful utility script that simplifies rewriting ES imports using just a config file. Built in Deno, leveraging an ES syntax module lexer and Worker modules for efficiency.",
img: esmImport,
link: "https://github.com/Barabasbalazs/esm-import-modifier",
options: [
{
text: "View source code",
link: "https://github.com/Barabasbalazs/esm-import-modifier",
},
],
},
];

0 comments on commit 29b0896

Please sign in to comment.