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/
*/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 { FooterStyle } from './designs';
import { FooterDesigns } from './designs';

View File

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