Skip to content

Commit

Permalink
updated packages and added one project
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhunu committed Jul 12, 2024
1 parent 36b779b commit 50f2489
Show file tree
Hide file tree
Showing 17 changed files with 290 additions and 289 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ lerna-debug.log*
node_modules
dist-ssr
*.local
dist

# Editor directories and files
.vscode/*
Expand Down
Binary file modified dist/assets/files/Angel_Saikia.pdf
Binary file not shown.
Binary file modified dist/assets/images/about.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dist/assets/images/hero-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
1 change: 0 additions & 1 deletion dist/assets/index-15375f8e.css

This file was deleted.

124 changes: 0 additions & 124 deletions dist/assets/index-3c2bbd7e.js

This file was deleted.

60 changes: 48 additions & 12 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,51 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<script type="module" crossorigin src="/assets/index-3c2bbd7e.js"></script>
<link rel="stylesheet" href="/assets/index-15375f8e.css">
</head>
<body>
<div id="root"></div>

</body>
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/svg+xml"
href="/assets/images/logo-bar.png"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Angel Saikia</title>
<script type="text/javascript">
(function (l) {
if (l.search[1] === "/") {
var decoded = l.search
.slice(1)
.split("&")
.map(function (s) {
return s.replace(/~and~/g, "&");
})
.join("?");
window.history.replaceState(
null,
null,
l.pathname.slice(0, -1) + decoded + l.hash
);
}
})(window.location);
</script>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-MNL3Y31FYL"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());

gtag("config", "G-MNL3Y31FYL");
</script>
<script type="module" crossorigin src="/assets/index-daa55869.js"></script>
<link rel="stylesheet" href="/assets/index-3c9a2b77.css">
</head>
<body>
<div id="root"></div>

</body>
</html>
27 changes: 16 additions & 11 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@
"typescript": "^5.0.2",
"vite": "^4.4.5"
}
}
}
Binary file modified public/assets/files/Angel_Saikia.pdf
Binary file not shown.
Binary file added public/assets/images/safar-sathi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
129 changes: 82 additions & 47 deletions src/components/ProjectSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import { Tabs, TabsList, TabsTrigger, TabsContent } from "./ui/tabs";

const ProjectSection = () => {
return (
<Container className="pt-20 mx-10 md:mx-auto" id="projects">
<h1 className="text-center font-extrabold text-3xl md:text-5xl font-serif">
<Container className="md:mx-auto pt-20 mx-10" id="projects">
<h1 className="md:text-5xl font-serif text-3xl font-extrabold text-center">
My Projects
</h1>
<Tabs defaultValue="all" className="mt-10">
Expand All @@ -15,65 +15,100 @@ const ProjectSection = () => {
<TabsTrigger value="all">All</TabsTrigger>
<TabsTrigger value="fe">Frontend</TabsTrigger>
<TabsTrigger value="be">Backend</TabsTrigger>
{/* <TabsTrigger value="fs">Full Stack</TabsTrigger> */}
</TabsList>
</div>
<TabsContent
value="all"
className="flex flex-wrap gap-2 justify-evenly"
className="justify-evenly flex flex-wrap gap-2"
>
{projects.map((project) => (
<ProjectCard
projectName={project.title}
projectImage={project.image}
projectLink={project.url}
projectGithub={project.github}
projectTags={project.techStack}
/>
))}
{projects
.sort((a, b) => b.id - a.id)
.filter(
(project) =>
project.scope === projectScope.FullStack
)

.map((project) => (
<ProjectCard
key={project.title}
projectName={project.title}
projectImage={project.image}
projectLink={project.url}
projectGithub={project.github}
projectTags={project.techStack}
/>
))}
{projects
.sort((a, b) => b.id - a.id)
.filter(
(project) => project.scope === projectScope.FrontEnd
)

.map((project) => (
<ProjectCard
key={project.title}
projectName={project.title}
projectImage={project.image}
projectLink={project.url}
projectGithub={project.github}
projectTags={project.techStack}
/>
))}
{projects
.sort((a, b) => b.id - a.id)
.filter(
(project) => project.scope === projectScope.BackEnd
)

.map((project) => (
<ProjectCard
key={project.title}
projectName={project.title}
projectImage={project.image}
projectLink={project.url}
projectGithub={project.github}
projectTags={project.techStack}
/>
))}
</TabsContent>

{/* <TabsContent
value="fs"
className="flex flex-wrap gap-2 justify-evenly"
>
{projects.filter(project => project.scope==projectScope.FullStack).map((project) => (
<ProjectCard
projectName={project.title}
projectImage={project.image}
projectLink={project.url}
projectGithub={project.github}
projectTags={project.techStack}
/>
))}
</TabsContent> */}
<TabsContent
value="be"
className="flex flex-wrap gap-2 justify-evenly"
className="justify-evenly flex flex-wrap gap-2"
>
{projects.filter(project => project.scope===projectScope.BackEnd).map((project) => (
<ProjectCard
projectName={project.title}
projectImage={project.image}
projectLink={project.url}
projectGithub={project.github}
projectTags={project.techStack}
/>
))}
{projects
.filter(
(project) => project.scope === projectScope.BackEnd
)
.map((project) => (
<ProjectCard
key={project.title}
projectName={project.title}
projectImage={project.image}
projectLink={project.url}
projectGithub={project.github}
projectTags={project.techStack}
/>
))}
</TabsContent>
<TabsContent
value="fe"
className="flex flex-wrap gap-2 justify-evenly"
className="justify-evenly flex flex-wrap gap-2"
>
{projects.filter(project => project.scope===projectScope.FrontEnd).map((project) => (
<ProjectCard
projectName={project.title}
projectImage={project.image}
projectLink={project.url}
projectGithub={project.github}
projectTags={project.techStack}
/>
))}
{projects
.filter(
(project) => project.scope === projectScope.FrontEnd
)
.map((project) => (
<ProjectCard
key={project.title}
projectName={project.title}
projectImage={project.image}
projectLink={project.url}
projectGithub={project.github}
projectTags={project.techStack}
/>
))}
</TabsContent>
</Tabs>
</Container>
Expand Down
Loading

0 comments on commit 50f2489

Please sign in to comment.