ESC
NuxtStarterAI logo
Menu
On this page

Tutorials > Private Page

🔐 Once the user is logged in, it's time to create some special routes! 🚀 Make a personalized user dashboard, a great account page, and more! 🌟


Protected API

🔒 Do you need to make protected API calls? 🚀 Go to the Protected API tutorial to discover the secrets! 🌟

Check out this sneak peek! A simple user dashboard revealing private user data in a server component. 🌟


pages/dashboard.vue
1<template> 2 3 <ClientOnly> 4 <main class="min-h-screen p-8 pb-24"> 5 <section class="max-w-xl mx-auto space-y-8"> 6 <LandingComponentsButtonAccount /> 7 <h1 class="text-3xl font-extrabold md:text-4xl">Private Page</h1> 8 </section> 9 </main> 10 </ClientOnly> 11</template> 12 13<script setup lang="ts"> 14import config from "@/config"; 15import { useRouter } from "vue-router"; 16 17if (process.client) { 18 const router = useRouter(); 19 20 const supabase = useSupabaseClient() 21 // Redirect the user to the callback url if already logged in. 22 const { 23 data: { session }, 24 } = await supabase.auth.getSession(); 25 26 if (!session) { 27 router.replace(config.auth.callbackUrl); 28 } 29} 30</script>