react18-tools/esbuild-plugin-react18-css

View on GitHub
packages/shared-ui/src/root/description.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import { ColorSwitch } from "nextjs-themes";
import { Logo } from "../common/logo";
import styles from "../root-layout.module.css";

export function Description() {
  return (
    <div className={styles.description}>
      <a
        className={styles.logo}
        href="https://github.com/react18-tools/turborepo-template/"
        rel="noopener noreferrer"
        target="_blank">
        <p>
          <Logo className={styles.code} />
        </p>
      </a>
      <div className={styles.by}>
        <a href="https://mayank-chaudhari.vercel.app" rel="noopener noreferrer" target="_blank">
          By Mayank
        </a>
        <ColorSwitch />
      </div>
    </div>
  );
}