mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-16 17:51:43 +10:00
refactor(v4.0.0-alpha): beginning of a new era
This commit is contained in:
37
apps/client/src/pages/dashboard/settings/page.tsx
Normal file
37
apps/client/src/pages/dashboard/settings/page.tsx
Normal file
@ -0,0 +1,37 @@
|
||||
import { Separator } from "@reactive-resume/ui";
|
||||
import { motion } from "framer-motion";
|
||||
import { Helmet } from "react-helmet-async";
|
||||
|
||||
import { AccountSettings } from "./_sections/account";
|
||||
import { DangerZoneSettings } from "./_sections/danger";
|
||||
import { OpenAISettings } from "./_sections/openai";
|
||||
import { ProfileSettings } from "./_sections/profile";
|
||||
import { SecuritySettings } from "./_sections/security";
|
||||
|
||||
export const SettingsPage = () => (
|
||||
<>
|
||||
<Helmet>
|
||||
<title>Settings - Reactive Resume</title>
|
||||
</Helmet>
|
||||
|
||||
<div className="max-w-2xl space-y-8 pb-12">
|
||||
<motion.h1
|
||||
initial={{ opacity: 0, x: -50 }}
|
||||
animate={{ opacity: 1, x: 0 }}
|
||||
className="text-4xl font-bold tracking-tight"
|
||||
>
|
||||
Settings
|
||||
</motion.h1>
|
||||
|
||||
<AccountSettings />
|
||||
<Separator />
|
||||
<SecuritySettings />
|
||||
<Separator />
|
||||
<ProfileSettings />
|
||||
<Separator />
|
||||
<OpenAISettings />
|
||||
<Separator />
|
||||
<DangerZoneSettings />
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
Reference in New Issue
Block a user