Merge version_1 into main #1
@@ -87,7 +87,7 @@ export default function AboutPage() {
|
||||
tag: "University Registrar",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-taking-mask-off-outdoors_23-2149403784.jpg",
|
||||
avatarAlt: "Dr. Sarah Mitchell",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/study-group-learning-library_23-2149215454.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/study-group-learning-library_23-2149215454.jpg?_wi=5",
|
||||
imageAlt: "University campus"
|
||||
},
|
||||
{
|
||||
@@ -99,7 +99,7 @@ export default function AboutPage() {
|
||||
tag: "Academic Department",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/man-portrait-posing-loft-modern-space_158595-5367.jpg",
|
||||
avatarAlt: "Prof. James Chen",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/study-group-learning-library_23-2149215454.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/study-group-learning-library_23-2149215454.jpg?_wi=6",
|
||||
imageAlt: "University campus"
|
||||
},
|
||||
{
|
||||
@@ -111,7 +111,7 @@ export default function AboutPage() {
|
||||
tag: "Student Voice",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/low-angle-non-binary-person-posing-outside_23-2148760546.jpg",
|
||||
avatarAlt: "Emma Rodriguez",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/study-group-learning-library_23-2149215454.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/study-group-learning-library_23-2149215454.jpg?_wi=7",
|
||||
imageAlt: "University campus"
|
||||
}
|
||||
]}
|
||||
|
||||
@@ -80,7 +80,7 @@ export default function ContactPage() {
|
||||
required: true
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-vector/travel-booking-app_23-2148595349.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/travel-booking-app_23-2148595349.jpg?_wi=4"
|
||||
imageAlt="UniMarks dashboard interface"
|
||||
mediaAnimation="blur-reveal"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -58,7 +58,7 @@ export default function DashboardPage() {
|
||||
background={{
|
||||
variant: "noiseDiagonalGradient",
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-vector/travel-booking-app_23-2148595349.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/travel-booking-app_23-2148595349.jpg?_wi=3"
|
||||
imageAlt="Dashboard interface for viewing academic records"
|
||||
frameStyle="browser"
|
||||
mediaAnimation="slide-up"
|
||||
|
||||
@@ -1,24 +1,56 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "UniMarks - University Marks Display System",
|
||||
description: "Secure, efficient marks management for universities. Real-time academic records access with enterprise-grade security and compliance.",
|
||||
keywords: "university marks, grade management, academic records, student portal, marks display system, educational platform",
|
||||
openGraph: {
|
||||
title: "UniMarks - University Marks Display System",
|
||||
description: "Secure marks management platform trusted by 250+ universities worldwide",
|
||||
type: "website",
|
||||
siteName: "UniMarks",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-vector/travel-booking-app_23-2148595349.jpg",
|
||||
alt: "UniMarks marks display dashboard"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "UniMarks - University Marks Display System",
|
||||
description: "Secure marks management platform for universities",
|
||||
images: ["http://img.b2bpic.net/free-vector/travel-booking-app_23-2148595349.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +59,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${dmSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +73,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -66,7 +66,7 @@ export default function HomePage() {
|
||||
background={{
|
||||
variant: "noiseDiagonalGradient"
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-vector/travel-booking-app_23-2148595349.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/travel-booking-app_23-2148595349.jpg?_wi=1"
|
||||
imageAlt="University marks management dashboard showing student grades"
|
||||
frameStyle="browser"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -171,7 +171,7 @@ export default function HomePage() {
|
||||
tag: "University Registrar",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-taking-mask-off-outdoors_23-2149403784.jpg",
|
||||
avatarAlt: "Dr. Sarah Mitchell",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/study-group-learning-library_23-2149215454.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/study-group-learning-library_23-2149215454.jpg?_wi=1",
|
||||
imageAlt: "University campus"
|
||||
},
|
||||
{
|
||||
@@ -183,7 +183,7 @@ export default function HomePage() {
|
||||
tag: "Academic Department",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/man-portrait-posing-loft-modern-space_158595-5367.jpg",
|
||||
avatarAlt: "Prof. James Chen",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/study-group-learning-library_23-2149215454.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/study-group-learning-library_23-2149215454.jpg?_wi=2",
|
||||
imageAlt: "University campus"
|
||||
},
|
||||
{
|
||||
@@ -195,7 +195,7 @@ export default function HomePage() {
|
||||
tag: "Student Voice",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/low-angle-non-binary-person-posing-outside_23-2148760546.jpg",
|
||||
avatarAlt: "Emma Rodriguez",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/study-group-learning-library_23-2149215454.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/study-group-learning-library_23-2149215454.jpg?_wi=3",
|
||||
imageAlt: "University campus"
|
||||
},
|
||||
{
|
||||
@@ -207,7 +207,7 @@ export default function HomePage() {
|
||||
tag: "IT Administration",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/upbeat-saleswoman-hired-explain-vehicle-pricing-options-clients_482257-118422.jpg",
|
||||
avatarAlt: "Michael Zhang",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/study-group-learning-library_23-2149215454.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/study-group-learning-library_23-2149215454.jpg?_wi=4",
|
||||
imageAlt: "University campus"
|
||||
}
|
||||
]}
|
||||
@@ -296,7 +296,7 @@ export default function HomePage() {
|
||||
required: true
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-vector/travel-booking-app_23-2148595349.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/travel-booking-app_23-2148595349.jpg?_wi=2"
|
||||
imageAlt="UniMarks dashboard interface"
|
||||
mediaAnimation="blur-reveal"
|
||||
mediaPosition="right"
|
||||
|
||||
Reference in New Issue
Block a user