diff --git a/src/app/culture/page.tsx b/src/app/culture/page.tsx index 2b2ecc5..89236fb 100644 --- a/src/app/culture/page.tsx +++ b/src/app/culture/page.tsx @@ -1,14 +1,9 @@ import React from "react"; -import Image from "next/image"; import Background from "@/components/culture/background"; -import CultureTitle from "@/public/culture/Culture.svg"; const page = () => { return (
-
- Our Culture Page Title -
); diff --git a/src/components/culture/background.tsx b/src/components/culture/background.tsx index c02833d..c44c99d 100644 --- a/src/components/culture/background.tsx +++ b/src/components/culture/background.tsx @@ -8,13 +8,13 @@ const background = () => { return (
- {"Top + {"Top
{"Bottom diff --git a/src/components/culture/text.tsx b/src/components/culture/text.tsx index d332dd1..0ed704e 100644 --- a/src/components/culture/text.tsx +++ b/src/components/culture/text.tsx @@ -5,6 +5,7 @@ import { motion } from "framer-motion"; import Image from "next/image"; import Nowruz from "/src/public/culture/Nowruz.png"; import ShabeYalda from "/src/public/culture/ShabeYalda.png"; +import CultureTitle from "@/public/culture/Culture.svg"; const animation = { hidden: { opacity: 0, y: 30 }, @@ -14,25 +15,35 @@ const animation = { const CultureText = () => { return (
-
- {/* Animated Nowruz Description */} + {/* Animated Title */} +
-

- Nowruz Significance: Nowruz, the Persian New Year, is a - significant cultural celebration that marks the beginning of the new - year in the Iranian calendar. It typically falls on the vernal - equinox, around March 20th or 21st, and is celebrated by millions of - people not only in Iran but also in many other countries with - Persian cultural influence. -

+ Our Culture Page Title
+ {/* Animated Nowruz Description */} + +

+ Nowruz Significance: Nowruz, the Persian New Year, is a + significant cultural celebration that marks the beginning of the new + year in the Iranian calendar. It typically falls on the vernal + equinox, around March 20th or 21st, and is celebrated by millions of + people not only in Iran but also in many other countries with Persian + cultural influence. +

+
{/* Animated Images */} @@ -60,27 +71,24 @@ const CultureText = () => {


-
- {/* Animated Shabe Yalda Description */} - -

- Shabe Yalda Significance: Shabe Yalda, also known as Yalda - Night or the Winter Solstice celebration, is a significant and - ancient Persian festival observed on the longest night of the year, - which typically falls on December 20th or 21st. This celebration - marks the victory of light over darkness as the days begin to grow - longer after the solstice. It is an event rich in symbolism and - cultural importance for Iranians and others with Persian cultural - ties. -

-
-
+ {/* Animated Shabe Yalda Description */} + +

+ Shabe Yalda Significance: Shabe Yalda, also known as Yalda + Night or the Winter Solstice celebration, is a significant and ancient + Persian festival observed on the longest night of the year, which + typically falls on December 20th or 21st. This celebration marks the + victory of light over darkness as the days begin to grow longer after + the solstice. It is an event rich in symbolism and cultural importance + for Iranians and others with Persian cultural ties. +

+
); };