diff --git a/app/page.tsx b/app/page.tsx index 92fb0a3..6d762cc 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -5,13 +5,13 @@ import Link from "next/link"; export default function Home() { return ( -

+

Welcome to
- + NomeN

-

+

{ "It doesn't merely build your resume, but rather crafts a legendary professional legacy that transforms your career into a mesmerizing narrative that demands to be read and remembered." } diff --git a/components/ui/special-button.tsx b/components/ui/special-button.tsx index aaa56f7..50c3633 100644 --- a/components/ui/special-button.tsx +++ b/components/ui/special-button.tsx @@ -1,17 +1,24 @@ +import { Button } from "@/lib/types"; +import { cn } from "@/lib/utils"; import React from "react"; -const SpecialButton = () => { +interface SpecialButtonProps extends Button { + classButton?: string; + className?: string; +} + +const SpecialButton: React.FC = ({ className, icon, title = "Explore", classButton }) => { return ( - ); }; -export default SpecialButton; +export default SpecialButton; \ No newline at end of file diff --git a/lib/types.ts b/lib/types.ts index 60b220f..10119b0 100644 --- a/lib/types.ts +++ b/lib/types.ts @@ -1,3 +1,5 @@ +import { ReactNode } from "react"; + export interface ResumeData { name: string; location: string; @@ -47,3 +49,8 @@ export interface Info { avatar?: string; background?: string; } + +export interface Button{ + icon?: ReactNode; + title?: string; +} \ No newline at end of file