Skip to content

Commit

Permalink
chore: add personal blog and tictactoe in projects page
Browse files Browse the repository at this point in the history
  • Loading branch information
eazypau committed Jan 6, 2024
1 parent cf112cf commit 0fb0c68
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 16 deletions.
8 changes: 4 additions & 4 deletions components/cards/NewProject.vue
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@
<script setup>
import { TransitionRoot } from "@headlessui/vue";
const props = defineProps({
isReverse: {
type: Boolean,
default: false,
},
// isReverse: {
// type: Boolean,
// default: false,
// },
projectDetails: {
type: Object,
default() {
Expand Down
Binary file added public/project-ss/blog-page.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 24 additions & 12 deletions utils/const.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,18 @@ export function useConstants() {
},
];
const projects = [
{
isReverse: true,
title: "Personal Blog",
titleColor: "text-white",
filterColor: "bg-slate-900 bg-opacity-60",
imageUrl: "/project-ss/blog-page.png",
description: "A personal blog using NextJS and Notion API",
techStack: ["NextJS", "TS", "TailwindCSS", "@notionhq/client"],
isUrl: true,
urlLink: "https://my-blog-eazypau.vercel.app/",
githubLink: "https://github.com/eazypau/my-blog",
},
{
isReverse: true,
title: "Order Management App",
Expand Down Expand Up @@ -283,18 +295,18 @@ export function useConstants() {
urlLink: "https://saloonbooking-95d49.web.app/",
githubLink: "https://github.com/eazypau/saloonbooking",
},
// {
// isReverse: true,
// title: "Tic Tac Toe",
// titleColor: "text-white",
// filterColor: "bg-zinc-700 mix-blend-hard-light",
// imageUrl: "/project-ss/tictactoe-ss.webp",
// description: "A game of tic tac toe in HTML, CSS, and JavaScript.",
// techStack: ["HTML", "CSS", "JavaScript"],
// isUrl: true,
// urlLink: "https://eazypau.github.io/tictactoe/",
// githubLink: "https://github.com/eazypau/tictactoe",
// },
{
isReverse: true,
title: "Tic Tac Toe",
titleColor: "text-white",
filterColor: "bg-zinc-700 mix-blend-hard-light",
imageUrl: "/project-ss/tictactoe-ss.webp",
description: "A game of tic tac toe in HTML, CSS, and JavaScript.",
techStack: ["HTML", "CSS", "JavaScript"],
isUrl: true,
urlLink: "https://eazypau.github.io/tictactoe/",
githubLink: "https://github.com/eazypau/tictactoe",
},
];
const workingProjects = [
{
Expand Down

0 comments on commit 0fb0c68

Please sign in to comment.