diff --git a/src/app/(pages)/confession/page.jsx b/src/app/(pages)/confession/page.jsx new file mode 100644 index 0000000..42fae3d --- /dev/null +++ b/src/app/(pages)/confession/page.jsx @@ -0,0 +1,81 @@ +"use client"; +import React from "react"; +import { Laugh, Frown } from "lucide-react"; + +const confessions = [ + { + id: 1, + content: "I once spent an entire day debugging, only to realize I was working on the wrong branch.", + }, + { + id: 2, + content: "Accidentally pushed my API keys to a public GitHub repo. Got an email from AWS about it an hour later.", + }, + { + id: 3, + content: "Deleted the production database instead of the staging one. Thankfully, we had backups... but still, that was terrifying.", + }, + { + id: 4, + content: "I thought a 'minor' change wouldn't need testing. It broke half the website.", + }, + { + id: 5, + content: "Wrote a script to automate a task, but forgot to include a safety check. It ended up emailing all our customers twice!", + }, + { + id: 6, + content: "Missed a semicolon in my JavaScript code and spent hours figuring out why the script wasn't working.", + }, + { + id: 7, + content: "I accidentally swapped '==' with '=' in an if statement and couldn't understand why my logic was broken.", + }, +]; + +const TechConfessions = () => { + return ( +
+ A fun section where developers anonymously share their funniest or most embarrassing tech-related mistakes. +
+"Laugh, learn, and share – we’ve all been there!"
+"{confession.content}"
+Have a funny or embarrassing tech story to share? We'd love to hear it!
+ +