"use client"; import React from "react"; export default function Home() { return (

Welcome to MyApp

Build something amazing with a simple and clean interface.

Fast

Optimized performance and smooth experience.

Simple

Minimal design focused on usability.

Reliable

Stable and scalable architecture.

); } if (typeof window !== "undefined") { if ("ServiceWorker" in window) { navigator.serviceWorker .register("/service-worker.js") .then(() => console.log("[ Registered ]")) .catch((err) => console.log("[ Not Registered ]", err)); } else console.log("[ There Is No SW In Window ]"); }