diff --git a/app/layout.tsx b/app/layout.tsx index 99c9a93..40b41f0 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,6 +1,5 @@ import type { Metadata } from "next"; import { Maven_Pro } from "next/font/google"; -import { LampDemo } from "@/components/ui/lamp" import "./globals.css"; @@ -17,11 +16,9 @@ export default function RootLayout({ children: React.ReactNode; }>) { return ( - - - - {children} - + + + {children} ); diff --git a/app/page.tsx b/app/page.tsx index 439da1f..840cb9e 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,7 +1,6 @@ import Image from "next/image" import Link from "next/link" import { BackgroundGradientAnimation } from "@/components/ui/background-gradient-animation" -import { HoverBorderGradient } from "@/components/ui/hover-border-gradient" import niLogo from "@/public/logo.svg" import netinternet from "@/public/netinternet.svg" import waf from "@/public/heimwall-logo.svg" @@ -9,6 +8,7 @@ import { FaFacebook } from "react-icons/fa"; import { BsTwitterX } from "react-icons/bs"; import { FaLinkedin } from "react-icons/fa"; import { FaInstagram } from "react-icons/fa"; +import { FaGithub } from "react-icons/fa"; import { BsRouter } from "react-icons/bs"; import { HiOutlineServerStack } from "react-icons/hi2"; import { IoMdCloudOutline } from "react-icons/io"; @@ -16,67 +16,90 @@ import { MdCampaign } from "react-icons/md"; import { TbWorldWww } from "react-icons/tb"; import { BsHddNetwork } from "react-icons/bs"; import { CgServer } from "react-icons/cg"; -import { LampDemo } from "@/components/ui/lamp" export default function Home() { return ( - - <> -
-
+ <> + +
+
-
- {""} +
+ + {""} +
-
- - - - +
+ + + + +
-
- - - - - - - - -
-
-

Deneme

ƒ - - +
+ + ); } diff --git a/bun.lockb b/bun.lockb index c45c60a..fe125e9 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/components/ui/background-gradient-animation.tsx b/components/ui/background-gradient-animation.tsx index 106c10a..d415ddf 100644 --- a/components/ui/background-gradient-animation.tsx +++ b/components/ui/background-gradient-animation.tsx @@ -15,7 +15,7 @@ export const BackgroundGradientAnimation = ({ blendingValue = "hard-light", children, className, - interactive = true, + interactive = false, containerClassName, }: { gradientBackgroundStart?: string; diff --git a/components/ui/lamp.tsx b/components/ui/lamp.tsx deleted file mode 100644 index 18b3407..0000000 --- a/components/ui/lamp.tsx +++ /dev/null @@ -1,104 +0,0 @@ -"use client"; -import React from "react"; -import { motion } from "framer-motion"; -import { cn } from "@/lib/utils/cn"; - -export function LampDemo() { - return ( - - - Build lamps
the right way -
-
- ); -} - -export const LampContainer = ({ - children, - className, -}: { - children: React.ReactNode; - className?: string; -}) => { - return ( -
-
- -
-
- - -
-
- -
-
-
- - - -
-
- -
- {children} -
-
- ); -}; diff --git a/package.json b/package.json index 4d9d4da..38530a0 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,7 @@ "lint": "next lint" }, "dependencies": { + "@svgr/webpack": "^8.1.0", "@tabler/icons-react": "^3.2.0", "clsx": "^2.1.0", "framer-motion": "^11.1.3",