diff --git a/public/ads.txt b/public/ads.txt
index 8e0ec54..d08b8c9 100644
--- a/public/ads.txt
+++ b/public/ads.txt
@@ -1 +1,2 @@
+TODO: put real adsense code here
google.com, pub-xxxx, DIRECT, f1xxxxxx
\ No newline at end of file
diff --git a/src/app/(main)/layout.tsx b/src/app/(main)/layout.tsx
index 2215028..a90b781 100644
--- a/src/app/(main)/layout.tsx
+++ b/src/app/(main)/layout.tsx
@@ -13,7 +13,7 @@ export const metadata: Metadata = {
// TODO: put your texts here
title: APP_NAME, // 'Some Public Website',
- description: 'Cool description for the website, this is used for SEO, so make it good!',
+ description: 'TODO: Cool description for the website, this is used for SEO, so make it good!',
};
export const viewport: Viewport = {
diff --git a/src/app/(main)/legal/terms-conditions/page.tsx b/src/app/(main)/legal/terms-conditions/page.tsx
index 478e67c..5d6d15c 100644
--- a/src/app/(main)/legal/terms-conditions/page.tsx
+++ b/src/app/(main)/legal/terms-conditions/page.tsx
@@ -1,4 +1,4 @@
-import { APP_NAME, PUBLIC_URL } from '@/config';
+import { APP_NAME, APP_SHORT_NAME, PUBLIC_URL } from '@/config';
import { Link, Typo, Wrapper } from '@/components';
/**
@@ -11,9 +11,9 @@ const TermsAndConditionsPage = () => {
Terms and Conditions
- Welcome to the DOMAIN-NAME.COM website ("Site"). This Site is a property of{' '}
+ Welcome to the TODO: DOMAIN-NAME.COM website ("Site"). This Site is a property of{' '}
- COMPANY OR OWNER
+ TODO: COMPANY OR OWNER
{' '}
("Owner"). By accessing the Site, you agree to follow and be bound by the following terms and
conditions concerning your use of the Site and our privacy policy.
@@ -57,8 +57,9 @@ const TermsAndConditionsPage = () => {
Trademarks
- "{APP_NAME}", "XXX", "YYY" are trademarks or registered trademarks of Owner. All
- other trademarks appearing on the Site are the sole property of their respective owners.
+ "{APP_NAME}", "{APP_SHORT_NAME}" "TODO: Other trademarks here" are trademarks or
+ registered trademarks of Owner. All other trademarks appearing on the Site are the sole property of their
+ respective owners.
Disclaimer
diff --git a/src/components/ContactForm/ContactForm.tsx b/src/components/ContactForm/ContactForm.tsx
index 22fdb19..9b27eb4 100644
--- a/src/components/ContactForm/ContactForm.tsx
+++ b/src/components/ContactForm/ContactForm.tsx
@@ -48,7 +48,7 @@ const ContactForm = () => {
}
try {
- const result = await emailjs.send('default_service', 'template_xxx', {
+ const result = await emailjs.send('default_service', 'TODO: template_xxx', {
email,
message,
});
diff --git a/src/layout/components/Footer/Footer.tsx b/src/layout/components/Footer/Footer.tsx
index ed24ffc..e0c4ccb 100644
--- a/src/layout/components/Footer/Footer.tsx
+++ b/src/layout/components/Footer/Footer.tsx
@@ -20,6 +20,8 @@ const Footer = () => {
[onMobile]
);
+ const copyrightHolder = useMemo(() => TODO: Add company name, []);
+
return (