import { useLocale, useTranslations } from 'next-intl'; import Image from "next/image"; import { Link } from '@/i18n/navigation'; import { LocaleType } from '@/i18n/i18n'; const { BLACK_FRIDAY_PROMO } = process.env; import LanguageSwitcher from '@/app/ui/components/LanguageSwitcher'; import { generateAuthUrl } from '@/app/helpers/generateAuthUrl'; export default function Home() { const t = useTranslations(); const currentYear = new Date().getFullYear(); const locale = useLocale(); const loginUrl = generateAuthUrl(locale as LocaleType, 'login'); const signUpUrl = generateAuthUrl(locale as LocaleType, 'signup'); return ( <> {BLACK_FRIDAY_PROMO && (
{t('promo.black_friday')}
)}
mssg.me logo

{t('website_home.home.intro.title.1')} {t('website_home.home.intro.title.2')}

{t('website_home.home.intro.description')}

{t('website_home.common.sign_up_cta')}
backed by Google for startups logotype
{/* Download on the App Store */}
Contact me landing example Shop landing example Multilink landing example

{t('website_home.home.presentation.title')}

{t('website_home.home.presentation.description')}

{t('website_home.common.sign_up_cta')}
Multi-link page example
Instagram icon
YouTube icon
TikTok icon
Twitter icon

{t('website_home.home.multi_link.title')}

{t('website_home.home.multi_link.subtitle')}

{t('website_home.home.multi_link.description')}

{t('website_home.common.sign_up_cta')}
Page with messengers example
Hey icon
User message image

{t('website_home.home.messengers.title')}

{t('website_home.home.messengers.subtitle')}

{t('website_home.home.messengers.description')}

{t('website_home.common.sign_up_cta')}
Online store page example
Shopping cart icon
Shopping cart icon

{t('website_home.home.store.title')}

{t('website_home.home.store.subtitle')}

{t('website_home.home.store.description')}

{t('website_home.common.sign_up_cta')}
Website builder example
Website builder blocks
Website builder blocks customization

{t('website_home.home.builder.title')}

{t('website_home.home.builder.subtitle')}

{t('website_home.home.builder.description')}

{t('website_home.common.sign_up_cta')}

{t('website_home.home.features.title')}

  • {t('website_home.home.features.list.domain.title')}

    {t('website_home.home.features.list.domain.description')}

  • {t('website_home.home.features.list.qr.title')}

    {t('website_home.home.features.list.qr.description')}

  • {t('website_home.home.features.list.analytics.title')}

    {t('website_home.home.features.list.analytics.description')}

{t('website_home.home.footer.title')}

{t('website_home.home.footer.description')}

{t('website_home.common.sign_up_cta')}
); }