Update src/app/workout-history/page.tsx
This commit is contained in:
@@ -3,23 +3,36 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import { CardStack } from '@/components/cardStack/CardStack';
|
||||
import CardStack from '@/components/cardStack/CardStack';
|
||||
|
||||
export default function WorkoutHistoryPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Log Workout", id: "/workout-log" },
|
||||
{ name: "History", id: "/workout-history" },
|
||||
]}
|
||||
brandName="Vitality"
|
||||
/>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Log Workout", id: "/workout-log" },
|
||||
{ name: "History", id: "/workout-history" },
|
||||
{ name: "Exercises", id: "/exercises" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div className="pt-32 pb-20 px-6">
|
||||
<h1 className="text-4xl font-bold mb-12 text-center">Your Workout History</h1>
|
||||
<CardStack animationType="slide-up" textboxLayout="default">
|
||||
<CardStack animationType="blur-reveal" textboxLayout="default">
|
||||
<div className="p-8 bg-card rounded-xl shadow-lg border">
|
||||
<h3 className="text-2xl font-semibold">Bench Press - 2023-10-15</h3>
|
||||
<p>Sets: 4 | Reps: 10 | Weight: 80kg</p>
|
||||
|
||||
Reference in New Issue
Block a user