Skip to main content

site-config

Site Config

Open up src/config/site.config.tsx to make quick changes to your site's title, description, logo and the color preset.

src/config/site.config.tsx
import logoImg from '@public/logo.svg';
import logoIconImg from '@public/logo-short.svg';

enum MODE {
DARK = 'dark',
LIGHT = 'light',
}

export const siteConfig = {
title: 'Isomorphic - React Typescript Admin Dashboard Template',
description: `Isomorphic the ultimate React TypeScript Admin Template. Streamline your admin dashboard development with our feature-rich, responsive, and highly customizable solution. Boost productivity and create stunning admin interfaces effortlessly.`,
logo: logoImg,
icon: logoIconImg,
mode: MODE.LIGHT,
layout: LAYOUT_OPTIONS.HYDROGEN,
};