From f895052792f15695b432eb3e6184e5a531313676 Mon Sep 17 00:00:00 2001
From: Krikorios <99836218+Krikorios@users.noreply.github.com>
Date: Sun, 20 Jul 2025 11:01:38 +0400
Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Fix=20UI=20transparency=20and=20?=
=?UTF-8?q?color=20coordination=20issues?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
- Fix navigation transparency with proper backdrop blur and contrast
- Change currency from USD to OMR for Omani market
- Add video section to landing page with proper looping
- Improve hero section readability with better contrast
- Fix navigation positioning in layout.tsx
- Enhance color coordination across all components
- Add proper glass effect styling for modern UI
---
src/app/admissions/page.tsx | 6 +-
src/app/layout.tsx | 2 +
src/app/page.tsx | 86 ++++++++++----------
src/components/Hero/HeroSection.tsx | 2 +-
src/components/Navigation/MainNavigation.tsx | 40 +++++----
5 files changed, 76 insertions(+), 60 deletions(-)
diff --git a/src/app/admissions/page.tsx b/src/app/admissions/page.tsx
index 7810c9b..06fab2d 100644
--- a/src/app/admissions/page.tsx
+++ b/src/app/admissions/page.tsx
@@ -11,7 +11,7 @@ export default function AdmissionsPage() {
"SAT/ACT scores (optional for 2024)",
"Personal statement",
"Letters of recommendation",
- "Application fee: $50"
+ "Application fee: OMR 20"
]
},
{
@@ -22,7 +22,7 @@ export default function AdmissionsPage() {
"GRE/GMAT scores",
"Research proposal",
"Letters of recommendation (3)",
- "Application fee: $75"
+ "Application fee: OMR 30"
]
},
{
@@ -33,7 +33,7 @@ export default function AdmissionsPage() {
"Financial documentation",
"Visa requirements",
"Health insurance",
- "Application fee: $100"
+ "Application fee: OMR 40"
]
}
];
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 4b1b375..77960d5 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -3,6 +3,7 @@ import { Inter } from 'next/font/google';
import './globals.css';
import { ClientProviders } from '@/components/providers/ClientProviders';
import { AIChatButton } from '@/components/Chat/AIChatButton';
+import { MainNavigation } from '@/components/Navigation/MainNavigation';
const inter = Inter({ subsets: ['latin'] });
@@ -20,6 +21,7 @@ export default function RootLayout({
+
{children}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 64cf12e..7e3763d 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -3,43 +3,12 @@ import Link from 'next/link';
export default function HomePage() {
return (
- {/* Navigation */}
-
{/* Hero Section */}
-
+
Established 1995 • Accredited Institution
@@ -73,27 +42,60 @@ export default function HomePage() {
-
+
25,000+
-
Students Enrolled
+
Students Enrolled
-
+
150+
-
Academic Programs
+
Academic Programs
-
+
95%
-
Graduate Success Rate
+
Graduate Success Rate
-
-
$2.5B
-
Research Funding
+
+
OMR 2.5B
+
Research Funding
+ {/* Video Section */}
+
+
+
+
+ Experience Our
+ Campus
+
+
+ Take a virtual tour of our state-of-the-art facilities and discover the vibrant
+ learning environment that awaits you at our university.
+
+
+
+
+
+
+
+
+
+
+
+
{/* Features Section */}
@@ -125,7 +127,7 @@ export default function HomePage() {
Research Leadership
- Leading breakthrough research in medicine, technology, and environmental sciences with over $2.5 billion in research funding.
+ Leading breakthrough research in medicine, technology, and environmental sciences with over OMR 2.5 billion in research funding.
diff --git a/src/components/Hero/HeroSection.tsx b/src/components/Hero/HeroSection.tsx
index e81a6be..d366883 100644
--- a/src/components/Hero/HeroSection.tsx
+++ b/src/components/Hero/HeroSection.tsx
@@ -85,7 +85,7 @@ export function HeroSection() {