diff --git a/src/components/admin/projects/EditForm.tsx b/src/components/admin/projects/EditForm.tsx
index 1be53fc..a35fb5f 100644
--- a/src/components/admin/projects/EditForm.tsx
+++ b/src/components/admin/projects/EditForm.tsx
@@ -197,9 +197,10 @@ export default function EditForm() {
{project.Title}
Built on:{" "}
- {new Date(
- project.buildDate.toDate().setHours(12),
- ).toLocaleDateString()}
+ {project.buildDate &&
+ new Date(
+ project.buildDate.toDate().setHours(12),
+ ).toLocaleDateString()}
diff --git a/src/components/landing/Hero.tsx b/src/components/landing/Hero.tsx
index 08bf8a5..0f1a7ad 100644
--- a/src/components/landing/Hero.tsx
+++ b/src/components/landing/Hero.tsx
@@ -37,7 +37,7 @@ export default function Hero() {
return (
@@ -71,7 +71,7 @@ export default function Hero() {
href="https://linktr.ee/pcbuildinguf"
target="_blank"
rel="noopener noreferrer"
- className="mt-6 rounded-md border border-[#B0B8FF] border-opacity-40 bg-black bg-opacity-80 px-8 py-2 text-base font-medium text-white opacity-0 transition-opacity transition-transform duration-300 duration-500 hover:scale-105 hover:shadow-[0_0_25px_rgba(255,255,255,0.2)]"
+ className="mt-6 rounded-md border border-[#B0B8FF] border-opacity-40 px-8 py-2 text-base font-medium text-white opacity-0 transition-transform duration-500 hover:scale-105 hover:shadow-[0_0_25px_rgba(255,255,255,0.2)]"
style={{ opacity: isTypingComplete ? 1 : 0 }}
>
Get Involved!
diff --git a/src/components/landing/Landing.tsx b/src/components/landing/Landing.tsx
index f6c0afd..1d2a73a 100644
--- a/src/components/landing/Landing.tsx
+++ b/src/components/landing/Landing.tsx
@@ -17,39 +17,39 @@ export default function Landing() {
}, []);
return (
-
+
{/* Background Gradients */}
-
+
{/* Decorative Lines */}