import React from 'react'; import type { ReactElement } from 'react'; import Head from 'next/head'; import BaseButton from '../components/BaseButton'; import CardBox from '../components/CardBox'; import SectionFullScreen from '../components/SectionFullScreen'; import LayoutGuest from '../layouts/Guest'; import BaseButtons from '../components/BaseButtons'; import { getPageTitle } from '../config'; import CardBoxComponentTitle from '../components/CardBoxComponentTitle'; export default function Starter() { const title = 'Shimahara Visual'; return (
{getPageTitle('Welcome')}

The SaaS platform to design, manage, and publish offline-ready interactive tours for physical venues.

© 2026 {title}. All rights reserved

); } Starter.getLayout = function getLayout(page: ReactElement) { return {page}; };