diff --git a/ui/src/components/ui/alert/Alert.vue b/ui/src/components/ui/alert/Alert.vue
new file mode 100644
index 0000000..1f680a0
--- /dev/null
+++ b/ui/src/components/ui/alert/Alert.vue
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
diff --git a/ui/src/components/ui/alert/AlertDescription.vue b/ui/src/components/ui/alert/AlertDescription.vue
new file mode 100644
index 0000000..3ee9f99
--- /dev/null
+++ b/ui/src/components/ui/alert/AlertDescription.vue
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
diff --git a/ui/src/components/ui/alert/AlertTitle.vue b/ui/src/components/ui/alert/AlertTitle.vue
new file mode 100644
index 0000000..2627ce1
--- /dev/null
+++ b/ui/src/components/ui/alert/AlertTitle.vue
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
diff --git a/ui/src/components/ui/alert/index.js b/ui/src/components/ui/alert/index.js
new file mode 100644
index 0000000..a8e79a2
--- /dev/null
+++ b/ui/src/components/ui/alert/index.js
@@ -0,0 +1,23 @@
+import { cva } from "class-variance-authority";
+
+export { default as Alert } from "./Alert.vue";
+export { default as AlertDescription } from "./AlertDescription.vue";
+export { default as AlertTitle } from "./AlertTitle.vue";
+
+export const alertVariants = cva(
+ "relative w-full rounded-lg border px-4 py-3 text-sm grid has-[>svg]:grid-cols-[calc(var(--spacing)*4)_1fr] grid-cols-[0_1fr] has-[>svg]:gap-x-3 gap-y-0.5 items-start [&>svg]:size-4 [&>svg]:translate-y-0.5 [&>svg]:text-current",
+ {
+ variants: {
+ variant: {
+ default: "bg-card text-card-foreground",
+ destructive:
+ "text-destructive bg-card [&>svg]:text-current *:data-[slot=alert-description]:text-destructive/90",
+ info:
+ "text-background bg-sidebar-primary [&>svg]:text-current *:data-[slot=alert-description]:text-background/90",
+ },
+ },
+ defaultVariants: {
+ variant: "default",
+ },
+ },
+);
diff --git a/ui/src/router/index.js b/ui/src/router/index.js
index 70cc36f..28678a6 100644
--- a/ui/src/router/index.js
+++ b/ui/src/router/index.js
@@ -16,6 +16,10 @@ const router = createRouter({
path: 'applications',
component: () => import('@/pages/ManageApplications.vue')
},
+ {
+ path: 'rankChange',
+ component: () => import('@/pages/RankChange.vue')
+ },
{
path: 'applications/:id',
component: () => import('@/pages/Application.vue')