-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprojects.ts
More file actions
66 lines (65 loc) · 3.08 KB
/
Copy pathprojects.ts
File metadata and controls
66 lines (65 loc) · 3.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
export interface Project {
title: string;
name: string;
description: string;
articleUrl: string;
repoUrl?: string;
image?: string;
techStack: string[];
}
export const featuredProjects: Project[] = [
{
title: "BoutiqueBot - Automated Retail & Telegram E-Commerce Bot",
name: "boutiquebot",
description: "Automated e-commerce & retail bot with real-time stock notifications, instant order alerts via Telegram, and automated inventory sync.",
articleUrl: "https://www.youtube.com/watch?v=LjT4EP2kYHo",
repoUrl: "https://github.com/networkandcode/boutique-bot",
image: "/images/projects/boutique_bot_screenshot.jpg",
techStack: ["Node.js", "Telegram Bot API", "E-Commerce", "Automation"]
},
{
title: "BrailleBoard Web Application",
name: "brailleboard",
description: "Text-to-Braille conversion web application built with Appwrite backend, Next.js frontend, and Web Speech API for accessibility.",
articleUrl: "https://networkandcode.hashnode.dev/text-to-braille-webpp-with-appwrite-nextjs-and-web-speech-api",
repoUrl: "https://github.com/networkandcode/brailleboard",
image: "/images/projects/brailleboard_screenshot.jpg",
techStack: ["Next.js", "Appwrite", "Web Speech API", "React"]
},
{
title: "CricScore - Cricket Scoring Web App",
name: "cricscore",
description: "Live cricket match scoring app with real-time score updates, match stats, and database management.",
articleUrl: "https://dev.to/networkandcode/cricket-scoring-app-using-appwrite-nextjs-3730",
repoUrl: "https://github.com/networkandcode/cricscore",
image: "/images/projects/cricscore_screenshot.png",
techStack: ["Next.js", "Appwrite", "TailwindCSS", "Node.js"]
},
{
title: "Notes App with Next.js & Serverless",
name: "notes",
description: "Full-stack notes application featuring instant search, dynamic tags, and cloud database persistence.",
articleUrl: "https://dev.to/networkandcode/notes-app-with-nextjs-2l4g",
repoUrl: "https://github.com/networkandcode/notes-app",
image: "/images/projects/notes_app_screenshot.png",
techStack: ["Next.js", "Serverless", "React", "REST API"]
},
{
title: "School Management System",
name: "school admin",
description: "Comprehensive school administrative dashboard deployed on Linode cloud with student records, attendance, and role-based access.",
articleUrl: "https://networkandcode.hashnode.dev/school-admin-app-with-nextjs-on-linode",
repoUrl: "https://github.com/networkandcode/sms",
image: "/images/projects/school_admin_screenshot.jpg",
techStack: ["Next.js", "TypeScript", "Linode Cloud", "Docker"]
},
{
title: "Online Shop with Next.js & HarperDB",
name: "shop",
description: "E-commerce web application backed by HarperDB NoSQL/SQL database and Next.js frontend rendering.",
articleUrl: "https://networkandcode.hashnode.dev/online-shop-with-nextjs-and-harperdb",
repoUrl: "https://github.com/networkandcode/shop",
image: "/images/projects/shop_app_screenshot.jpg",
techStack: ["Next.js", "HarperDB", "GraphQL", "React"]
}
];