Skip to content

Commit ef771f8

Browse files
committed
dona di
1 parent f4b60a5 commit ef771f8

File tree

5 files changed

+265
-115
lines changed

5 files changed

+265
-115
lines changed

app/DummyPage.tsx

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
import Image from "next/image";
2+
3+
export default function DummyPage() {
4+
return (
5+
<div className="min-h-screen flex flex-col items-center justify-center bg-gradient-to-b from-gray-900 via-gray-800 to-black text-center px-6 py-12">
6+
{/* Memorial Card */}
7+
<div className="bg-gradient-to-br from-gray-800 to-gray-900 shadow-2xl rounded-2xl p-8 max-w-2xl w-full border border-gray-700">
8+
<div className="flex flex-col items-center">
9+
{/* Image */}
10+
<div className="relative w-48 h-48 rounded-full overflow-hidden border-4 border-gray-600 shadow-lg">
11+
<Image
12+
src="/Assets/Images/donadi1.jpg"
13+
alt="Dona Murmu"
14+
fill
15+
className="object-cover"
16+
/>
17+
</div>
18+
19+
{/* Title */}
20+
<h1 className="text-3xl font-semibold text-white mt-6">In Loving Memory of Our Beloved Dona Di</h1>
21+
<p className="text-gray-300 mt-2">16.08.2000 – 2025</p>
22+
</div>
23+
24+
{/* Message */}
25+
<div className="mt-6 text-gray-300 space-y-4 leading-relaxed">
26+
<p>
27+
With deepest sorrow, we share that our beloved <span className="font-semibold text-white">Dona Di</span> has left us today.
28+
Her kindness, warmth, and ever-smiling presence touched countless hearts and will forever remain in our memories.
29+
</p>
30+
<p>
31+
Though she is no longer with us, her love, blessings, and cherished moments will continue to guide us.
32+
</p>
33+
<p>
34+
May her soul rest in eternal peace. She will always be remembered with love and respect.
35+
</p>
36+
<p className="italic text-gray-400">Om Shanti 🤍</p>
37+
</div>
38+
39+
{/* Condolence Note */}
40+
<div className="mt-8 border-t border-gray-700 pt-6">
41+
<p className="text-gray-400">
42+
It’s very unfortunate to share that,{" "}
43+
<span className="font-semibold text-white">Dona Murmu</span>, our
44+
extremely adored member of{" "}
45+
<span className="font-semibold text-white">Coding Junction</span>,
46+
has passed away.
47+
</p>
48+
<p className="mt-3 text-gray-400">
49+
Her sudden departure is deeply painful beyond explanation, leaving
50+
a void in us. The loss is tragic, and her absence will be felt by
51+
everyone who knew her.
52+
</p>
53+
<p className="mt-3 text-gray-300 font-medium">You will be deeply missed, Didi.</p>
54+
</div>
55+
</div>
56+
</div>
57+
);
58+
}

app/page.tsx

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
1-
import Landing from "./Landing/page";
1+
// import Landing from "./Landing/page";
22

33

44

5+
// export default function Home() {
6+
// return (
7+
// <div>
8+
// <Landing/>
9+
// </div>
10+
// );
11+
// }
12+
import DummyPage from "./DummyPage";
13+
514
export default function Home() {
6-
return (
7-
<div>
8-
<Landing/>
9-
</div>
10-
);
11-
}
15+
return <DummyPage />;
16+
}

0 commit comments

Comments
 (0)