diff --git a/src/app/(stats)/player/[ign]/_stats/duels/duels.tsx b/src/app/(stats)/player/[ign]/_stats/duels/duels.tsx
index b2769e8..aa78873 100644
--- a/src/app/(stats)/player/[ign]/_stats/duels/duels.tsx
+++ b/src/app/(stats)/player/[ign]/_stats/duels/duels.tsx
@@ -7,6 +7,7 @@ import { romanize } from "@/lib/hypixel/general"
import { NonNullStats } from "@/lib/schema/player"
import CollapsedStats from "../../_components/CollapsedStats"
import DuelsGeneralStats from "./stats"
+import DuelsStatsTable from "./table"
export default function DuelsStats({ stats }: { stats: NonNullStats["Duels"] }) {
if (!stats) return null
@@ -70,6 +71,7 @@ export default function DuelsStats({ stats }: { stats: NonNullStats["Duels"] })
+
diff --git a/src/app/(stats)/player/[ign]/_stats/duels/table.tsx b/src/app/(stats)/player/[ign]/_stats/duels/table.tsx
new file mode 100644
index 0000000..bd003ee
--- /dev/null
+++ b/src/app/(stats)/player/[ign]/_stats/duels/table.tsx
@@ -0,0 +1,38 @@
+import { Table, TableHead, TableHeader, TableRow } from "@/components/ui/table"
+import { NonNullStats } from "@/lib/schema/player"
+
+export default function DuelsStatTable({ stats }: { stats: NonNullStats["Duels"] }) {
+ return (
+
+ )
+}
+
+function DuelsTableHeader() {
+ const headerElements = [
+ "Mode",
+ "Div",
+ "Kills",
+ "Deaths",
+ "KD",
+ "Wins",
+ "Losses",
+ "WL",
+ "WS",
+ "Top WS",
+ "Melee HM",
+ "Arrow HM",
+ "Goals"
+ ]
+
+ return (
+
+
+ {headerElements.map((v, i) => {
+ return {v}
+ })}
+
+
+ )
+}