Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #5.
This commit is contained in:
@@ -163,13 +163,10 @@ export default function AdminPage() {
|
||||
carouselMode="buttons"
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "Job Applications Trend", description: "Track weekly application volume and trends", bentoComponent: "line-chart"},
|
||||
{
|
||||
id: 2,
|
||||
title: "Revenue by Province", description: "Revenue distribution across Dutch provinces", bentoComponent: "animated-bar-chart"},
|
||||
{
|
||||
id: 3,
|
||||
title: "User Growth Metrics", description: "Active users and engagement statistics", bentoComponent: "icon-info-cards", items: [
|
||||
{ icon: Users, label: "Total Users", value: "24,500+" },
|
||||
{ icon: Briefcase, label: "Job Postings", value: "3,240" },
|
||||
@@ -177,16 +174,13 @@ export default function AdminPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Geographic Distribution", description: "Job seeker and employer locations worldwide", bentoComponent: "map"},
|
||||
{
|
||||
id: 5,
|
||||
title: "Popular Job Categories", description: "Most sought-after job positions and skills", bentoComponent: "marquee", centerIcon: Briefcase,
|
||||
variant: "text", texts: [
|
||||
"Software Engineering", "Product Management", "Data Science", "UX Design", "Marketing", "Sales"],
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
title: "System Status Overview", description: "Platform health and service monitoring", bentoComponent: "3d-stack-cards", items: [
|
||||
{
|
||||
icon: Activity,
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/providers/service";
|
||||
import { Tag } from "@/components/tag";
|
||||
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
@@ -23,10 +21,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<body className={`${geist.variable} ${geistMono.variable}`}>
|
||||
<ServiceWrapper>
|
||||
<Tag />
|
||||
{children}
|
||||
</ServiceWrapper>
|
||||
{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
|
||||
Reference in New Issue
Block a user