diff --git a/src/app/generator/page.tsx b/src/app/generator/page.tsx
index 8093d0b..c558d2e 100644
--- a/src/app/generator/page.tsx
+++ b/src/app/generator/page.tsx
@@ -19,8 +19,7 @@ export default function GeneratorPage() {
const footerColumns = [
{
- title: "Product",
- items: [
+ title: "Product", items: [
{ label: "Idea Generator", href: "/generator" },
{ label: "Creator Tools", href: "#tools" },
{ label: "Categories", href: "#categories" },
@@ -28,8 +27,7 @@ export default function GeneratorPage() {
],
},
{
- title: "Resources",
- items: [
+ title: "Resources", items: [
{ label: "Creator Tips Blog", href: "/blog" },
{ label: "Documentation", href: "#" },
{ label: "API Reference", href: "#" },
@@ -37,8 +35,7 @@ export default function GeneratorPage() {
],
},
{
- title: "Company",
- items: [
+ title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Contact", href: "#" },
{ label: "Privacy Policy", href: "#" },
@@ -54,7 +51,7 @@ export default function GeneratorPage() {
borderRadius="soft"
contentWidth="mediumLarge"
sizing="medium"
- background="noise"
+ background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="radial-glow"
@@ -64,9 +61,7 @@ export default function GeneratorPage() {
@@ -75,7 +70,7 @@ export default function GeneratorPage() {
@@ -79,13 +74,13 @@ export default function HomePage() {
(function SvgTextLogo({
- logoText,
- adjustHeightFactor,
- verticalAlign = "top",
- className = "",
-}) {
- const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor);
-
+const SvgTextLogo: React.FC = ({
+ text,
+ className = "", fontSize = 48,
+ fontWeight = "bold", dominantBaseline = "middle"}) => {
return (
);
-});
+};
-SvgTextLogo.displayName = "SvgTextLogo";
-
-export default SvgTextLogo;
+export default SvgTextLogo;
\ No newline at end of file