Compare commits

...

2 Commits

Author SHA1 Message Date
lora322
18b39868ac
Update footer link to Flatlogic logo 2025-09-21 10:04:39 -04:00
lora322
d165a22fb3
Import useState and useEffect in orders-new.tsx 2025-09-19 22:20:29 -04:00
2 changed files with 2 additions and 1 deletions

View File

@ -16,7 +16,7 @@ export default function FooterBar({ children }: Props) {
<div className='text-center md:text-left mb-6 md:mb-0'> <div className='text-center md:text-left mb-6 md:mb-0'>
<b> <b>
&copy;{year},{` `} &copy;{year},{` `}
<a href='https://veracityres.com/' rel='noreferrer' target='_blank'> <a href='https://flatlogic.com/logo.svg' rel='noreferrer' target='_blank'>
Veracity Real Estate Solutions Veracity Real Estate Solutions
</a> </a>
. .

View File

@ -6,6 +6,7 @@ import {
} from '@mdi/js'; } from '@mdi/js';
import Head from 'next/head'; import Head from 'next/head';
import React, { ReactElement } from 'react'; import React, { ReactElement } from 'react';
import { useState, useEffect } from 'react';
import CardBox from '../../components/CardBox'; import CardBox from '../../components/CardBox';
import LayoutAuthenticated from '../../layouts/Authenticated'; import LayoutAuthenticated from '../../layouts/Authenticated';
import SectionMain from '../../components/SectionMain'; import SectionMain from '../../components/SectionMain';