Compare commits

...

3 Commits

Author SHA1 Message Date
Flatlogic Bot
b5fe6210fc Revert to version ab424c8 2025-05-14 22:11:39 +00:00
Flatlogic Bot
6ad831a234 Auto commit: 2025-05-14T22:11:16.743Z 2025-05-14 22:11:16 +00:00
Flatlogic Bot
ab424c89dc Auto commit: 2025-05-14T22:11:15.943Z 2025-05-14 22:11:15 +00:00
5 changed files with 19 additions and 10 deletions

5
.gitignore vendored
View File

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

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{}

View File

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

View File

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