From 7691c44de2578a3f1716fae801b90d321269f167 Mon Sep 17 00:00:00 2001 From: jayram833 Date: Fri, 8 Nov 2024 12:29:24 +0530 Subject: [PATCH] fix: adjust min-height to 80vh to prevent page scrolling --- app/page.tsx | 107 ++++++++++++++++++++++++++++++--------------------- 1 file changed, 63 insertions(+), 44 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index f03a27e..29f2e32 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,51 +1,70 @@ -'use client'; +"use client"; -import React from 'react'; +import React from "react"; import { motion } from "framer-motion"; -import { HeroHighlight, Highlight } from '@/components/ui/hero-highlight'; -import { HeroImages } from '@/components/hero-images'; -import { HoverBorderGradient } from '@/components/ui/hover-border-gradient'; -import { HeroParallaxImages } from '@/components/hero-parallax-images'; -import { AdditionalInfo } from '@/components/additional-info'; -import Link from 'next/link'; +import { HeroHighlight, Highlight } from "@/components/ui/hero-highlight"; +import { HeroImages } from "@/components/hero-images"; +import { HoverBorderGradient } from "@/components/ui/hover-border-gradient"; +import { HeroParallaxImages } from "@/components/hero-parallax-images"; +import { AdditionalInfo } from "@/components/additional-info"; +import Link from "next/link"; const page = () => { - return ( -
- - - Create {" "} - - text-behind-image - - {" "} designs easily - - - - - Open the app - - + return ( +
+ + + Create text-behind-image{" "} + designs easily + + + + + Open the app + + - Text Behind Image - Create stunning text-behind-image designs easily | Product Hunt - -
- - -
-
- -
- Created by Rexan Wong -
-
+ + Text Behind Image - Create stunning text-behind-image designs easily | Product Hunt + + +
+ + +
+
+ +
+ Created by{" "} + + Rexan Wong +
- ); -} +
+
+ ); +}; -export default page; \ No newline at end of file +export default page;