Compare commits

..

No commits in common. "ai-dev" and "master" have entirely different histories.

5 changed files with 10 additions and 19 deletions

5
.gitignore vendored
View File

@ -1,8 +1,3 @@
node_modules/ node_modules/
*/node_modules/ */node_modules/
*/build/ */build/
**/node_modules/
**/build/
.DS_Store
.env

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
{}

View File

@ -1,5 +1,3 @@
"use client";
import React from 'react'; import React from 'react';
import { FooterStyle } from './designs'; import { FooterStyle } from './designs';
import { FooterDesigns } from './designs'; import { FooterDesigns } from './designs';

View File

@ -53,7 +53,6 @@ export default function Login() {
}); });
const title = 'Yt auto pilot'; const title = 'Yt auto pilot';
const currentYear = new Date().getFullYear();
// Fetch Pexels image/video // Fetch Pexels image/video
useEffect(() => { useEffect(() => {
@ -359,13 +358,12 @@ export default function Login() {
</div> </div>
</SectionFullScreen> </SectionFullScreen>
<div className='bg-black text-white flex flex-col text-center justify-center md:flex-row'> <div className='bg-black text-white flex flex-col text-center justify-center md:flex-row'>
<p className='py-6 text-sm'> <p className='py-6 text-sm'>
{t('pages.login.footer.copyright', { © 2024 <span>{title}</span>.{' '}
year: currentYear, {t('pages.login.footer.copyright', {
title, defaultValue: '© All rights reserved',
defaultValue: `© ${currentYear} ${title}. All rights reserved`, })}
})} </p>
</p>
<Link className='py-6 ml-4 text-sm' href='/privacy-policy/'> <Link className='py-6 ml-4 text-sm' href='/privacy-policy/'>
{t('pages.login.footer.privacy', { defaultValue: 'Privacy Policy' })} {t('pages.login.footer.privacy', { defaultValue: 'Privacy Policy' })}
</Link> </Link>