From 9f0d43fe099a95ab1516ae951dcb60a89e76a5a5 Mon Sep 17 00:00:00 2001
From: 简律纯
Date: Fri, 3 Nov 2023 21:13:33 +0800
Subject: chore: delete useless codes
---
docs/components/pages/home-shared/Headings.tsx | 56 --------------------------
1 file changed, 56 deletions(-)
delete mode 100644 docs/components/pages/home-shared/Headings.tsx
(limited to 'docs/components/pages/home-shared/Headings.tsx')
diff --git a/docs/components/pages/home-shared/Headings.tsx b/docs/components/pages/home-shared/Headings.tsx
deleted file mode 100644
index 43a5e52..0000000
--- a/docs/components/pages/home-shared/Headings.tsx
+++ /dev/null
@@ -1,56 +0,0 @@
-import cn from "classnames";
-import gradients from "./gradients.module.css";
-
-export function HeroText({
- children,
- className,
- h1,
-}: {
- children: React.ReactNode;
- className?: string;
- h1?: boolean;
-}) {
- const combinedClassname = cn(
- gradients.heroHeading,
- "font-extrabold tracking-[-0.04em] leading-none text-[40px] md:text-5xl lg:text-[80px] max-w-lg md:max-w-xl lg:max-w-4xl text-center text-transparent",
- className
- );
-
- if (h1) {
- return {children}
;
- }
- return {children}
;
-}
-
-export function SectionHeader({ children }: { children: React.ReactNode }) {
- return (
-
- {children}
-
- );
-}
-
-export function SectionSubtext({
- hero,
- children,
-}: {
- hero?: boolean;
- children: React.ReactNode;
-}) {
- const textClasses = hero
- ? "text-[20px] lg:text-xl"
- : "text-[16px] lg:text-[20px]";
-
- return (
-
- {children} -
- ); -} -- cgit v1.2.3-70-g09d2