diff --git a/src/app/(frontend)/[locale]/layout.tsx b/src/app/(frontend)/[locale]/layout.tsx index 686d039..55229c0 100644 --- a/src/app/(frontend)/[locale]/layout.tsx +++ b/src/app/(frontend)/[locale]/layout.tsx @@ -1,4 +1,5 @@ import type { Metadata } from 'next' +import Script from 'next/script' import { NextIntlClientProvider } from 'next-intl' import { getMessages, setRequestLocale } from 'next-intl/server' import { notFound } from 'next/navigation' @@ -34,6 +35,15 @@ export default async function LocaleLayout({ children, params }: Props) { return ( +
+ {process.env.NODE_ENV === 'development' && ( + + )} ++
{t('tagline')}
diff --git a/src/components/sections/Process.tsx b/src/components/sections/Process.tsx index c149e6e..7071b8f 100644 --- a/src/components/sections/Process.tsx +++ b/src/components/sections/Process.tsx @@ -2,7 +2,8 @@ import { motion, type Variants } from 'framer-motion'; import { useTranslations } from 'next-intl'; -import { Search, LayoutDashboard, PenTool, Rocket, type LucideIcon } from 'lucide-react'; +import type { LucideIcon } from 'lucide-react'; +import { Search, LayoutDashboard, PenTool, Rocket } from 'lucide-react'; import { cn } from '@/lib/utils'; import { staggerContainerWide, @@ -69,23 +70,11 @@ function StepCard({ numeral, stepKey, Icon }: { numeral: string; stepKey: string - {/* Icon container */} -