= ({ projectName }) => {
+ return (
+
+ );
+};
+export default ProjectName;
diff --git a/apps/main/src/app/projects/page.tsx b/apps/main/src/app/projects/page.tsx
index d2964563..20fc4fe2 100644
--- a/apps/main/src/app/projects/page.tsx
+++ b/apps/main/src/app/projects/page.tsx
@@ -2,7 +2,6 @@
import React from "react";
import Project from "./components/Project";
-import RibbonTitle from "@repo/ui/RibbonTitle";
import ProjectBackground from "./components/background";
import useDevice from "@util/hooks/useDevice";
import PinkFirework from "./components/pinkFirework";
@@ -10,6 +9,7 @@ import OrangeFirework from "./components/orangeFirework";
import YellowFirework from "./components/yellowFirework";
import Button from "@repo/ui/Button";
import { Footer, NavBar } from "../lib/Components";
+import ProjectName from "./components/ProjectName";
const projectData = [
{
@@ -18,7 +18,7 @@ const projectData = [
award: "Best Social Impact",
members: "Kaleb Cole, Yaroslav Petrashko, Shrey Agarwal, Aditya",
description:
- "Memora is a mobile app that acts as a personalized road map through memories, designed for individuals in the early to moderate stages of dementia and their families. Using personal family photos – snapshots from life's journey – Memora stimulates memory recall through engaging quizzes and a user-friendly interface.",
+ "Memora acts as a personalized road map through memories, designed for individuals in the early to moderate stages of dementia and their families. Using personal family photos, Memora stimulates memory recall through engaging quizzes and a user-friendly interface.",
link: "https://devpost.com/software/memora-bmi4zw",
},
{
@@ -70,20 +70,26 @@ const projectData = [
export default function Page() {
const { isMobile, isTablet, isDesktop } = useDevice();
+
return (
-