"use client"; import React from 'react'; import { Typography, Layout, Row, Col, Image } from 'antd'; import { RightOutlined, PhoneOutlined } from '@ant-design/icons'; import SectionTitle from '@/components/ui/SectionTitle'; import PageTitle from '@/components/ui/PageTitle'; import LoadingMeter from '@/components/ui/LoadingMeter'; import PrimaryButton from '@/components/ui/PrimaryButton'; import { useRouter } from 'next/navigation'; const { Text } = Typography; const GuestPage = () => { const router = useRouter() return ( DASHBOARD {/* Plan Details */} Plan: Free Plan This product is still in beta testing. There might be some issues. Use at your own risk. Contact: Aliff Akmal Bahri { router.push("user/pricing") }}> Upgrade Plan {/* Ruccan AI Labs Section */} Ruccan AI Labs Explore our latest AI experiments New tools added regularly! Ruccan AI Labs {alert("Hello")}}> Explore Lab {/* Usage Limits */} ); }; export default GuestPage;