diff --git a/app/docs/page.tsx b/app/deliverables/page.tsx similarity index 89% rename from app/docs/page.tsx rename to app/deliverables/page.tsx index 356e470..b20fab9 100644 --- a/app/docs/page.tsx +++ b/app/deliverables/page.tsx @@ -1,10 +1,10 @@ "use client"; +import { Button } from "@/components/ui/button"; +import { ArrowLeft } from "lucide-react"; import React from "react"; import ReactMarkdown, { Components } from "react-markdown"; import remarkGfm from "remark-gfm"; -import Link from "next/link"; -import { Button } from "@/components/ui/button"; const ReadmePage = () => { const readmeContent = ` @@ -33,20 +33,16 @@ Preview the Screens: Scroll through the design sections in logical flow Download Assets: Use the "Download All Mockups" button to access the .zip file -## 🔗 Links +## 🔗 How to Access Your Deliverables -[Live Preview URL](https://woedii.yoursoftwareengineers.com) +[Wodey Interactive Prototype](https://woedii.yoursoftwareengineers.com) -[Download Full Zip File by clicking on the download icon](https://woedii.yoursoftwareengineers.com/slider) +[View Your High-fidelity UI Mockups & Design System Components. Click the Download Icon to Save All Images to Your Device.](https://woedii.yoursoftwareengineers.com/slider) +[Competitive Analysis](https://woedii.yoursoftwareengineers.com/deliverables/swot) ## 🤝 Support -If you need help integrating these designs into code or want to schedule a handoff session, please contact: - -UI/UX Design Lead: Daphne Augustine ([daphne@yoursoftwareengineers.com](mailto:daphne@yoursoftwareengineers.com)) - -Development Lead: Yussif Yahuza ([yussif@yoursoftwareengineers.com](mailto:yussif@yoursoftwareengineers.com)) - `; +If you need help integrating these designs into code or want to schedule a handoff session, please contact [info@yoursoftwareengineers.com](mailto:info@yoursoftwareengineers.com)`; const components: Components = { h1: ({ node, ...props }) => ( @@ -229,18 +225,15 @@ Development Lead: Yussif Yahuza ([yussif@yoursoftwareengineers.com](mailto:yussi return (
+ {readmeContent} - -
-

Additional Resources

- - - -
); diff --git a/app/docs/swot/page.tsx b/app/deliverables/swot/page.tsx similarity index 64% rename from app/docs/swot/page.tsx rename to app/deliverables/swot/page.tsx index 75aa497..9bf4117 100644 --- a/app/docs/swot/page.tsx +++ b/app/deliverables/swot/page.tsx @@ -3,6 +3,7 @@ import { useEffect, useState } from "react"; import { Button } from "@/components/ui/button"; import Link from "next/link"; +import Image from "next/image"; export default function SwotAnalysisPage() { const [isClient, setIsClient] = useState(false); @@ -26,36 +27,44 @@ export default function SwotAnalysisPage() { Threats for the WODEY platform.

- +
- - - + + Download PDF
- + {isClient ? ( -
- -

- Your browser does not support PDFs. Please download to view. -

-
+
+ SWOT Analysis
) : (
- Loading PDF viewer... + Loading viewer...
)}
diff --git a/public/WODEY-SWOT-Analysis.jpg b/public/WODEY-SWOT-Analysis.jpg new file mode 100644 index 0000000..b168c19 Binary files /dev/null and b/public/WODEY-SWOT-Analysis.jpg differ