Skip to content

Commit 0718688

Browse files
Merge pull request #2 from Programmer-RD-AI/main
Updates
2 parents b0ba3d8 + 15101ae commit 0718688

File tree

7 files changed

+2
-417
lines changed

7 files changed

+2
-417
lines changed

public/img/hero.png

647 KB
Loading

src/app/layout.tsx

-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import "./globals.css";
55

66
import { Navbar } from "@/components/Navbar";
77
import { Footer } from "@/components/Footer";
8-
import { PopupWidget } from "@/components/PopupWidget";
98

109
const inter = Inter({ subsets: ["latin"] });
1110

@@ -29,7 +28,6 @@ export default function RootLayout({
2928
<Navbar />
3029
<div>{children}</div>
3130
<Footer />
32-
{/* <PopupWidget /> */}
3331
</ThemeProvider>
3432
</body>
3533
</html>

src/app/page.tsx

-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { Benefits } from "@/components/Benefits";
55
import { Video } from "@/components/Video";
66
import { Testimonials } from "@/components/Testimonials";
77
import { Faq } from "@/components/Faq";
8-
import { Cta } from "@/components/Cta";
98

109
import { benefitOne, benefitTwo } from "@/components/data";
1110
export default function Home() {
@@ -49,7 +48,6 @@ export default function Home() {
4948
</SectionTitle>
5049

5150
<Faq />
52-
{/* <Cta /> */}
5351
</Container>
5452
);
5553
}

src/components/Cta.tsx

-29
This file was deleted.

src/components/Hero.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const Hero = () => {
2727
rel="noopener"
2828
className="px-8 py-4 text-lg font-medium text-center text-white bg-indigo-600 rounded-md "
2929
>
30-
Download for Free
30+
Contsct Us
3131
</a>
3232
{/* <a
3333
href="https://github.com/web3templates/nextly-template/"

src/components/Navbar.tsx

+1-27
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ import Image from "next/image";
55
import { Disclosure } from "@headlessui/react";
66

77
export const Navbar = () => {
8-
const navigation = ["Product", "Features", "Pricing", "Company", "Blog"];
9-
108
return (
119
<div className="w-full">
1210
<nav className="container relative flex flex-wrap items-center justify-between p-8 mx-auto lg:justify-between xl:px-0">
@@ -57,20 +55,11 @@ export const Navbar = () => {
5755

5856
<Disclosure.Panel className="flex flex-wrap w-full my-5 lg:hidden">
5957
<>
60-
{navigation.map((item, index) => (
61-
<Link
62-
key={index}
63-
href="/"
64-
className="w-full px-4 py-2 -ml-4 text-gray-500 rounded-md dark:text-gray-300 hover:text-indigo-500 focus:text-indigo-500 focus:bg-indigo-100 dark:focus:bg-gray-800 focus:outline-none"
65-
>
66-
{item}
67-
</Link>
68-
))}
6958
<Link
7059
href="/"
7160
className="w-full px-6 py-2 mt-3 text-center text-white bg-indigo-600 rounded-md lg:ml-5"
7261
>
73-
Get Started
62+
Contact Us
7463
</Link>
7564
</>
7665
</Disclosure.Panel>
@@ -92,18 +81,3 @@ export const Navbar = () => {
9281
</div>
9382
);
9483
};
95-
96-
{
97-
/* menu */
98-
}
99-
// <div className="hidden text-center lg:flex lg:items-center">
100-
// <ul className="items-center justify-end flex-1 pt-6 list-none lg:pt-0 lg:flex">
101-
// {navigation.map((menu, index) => (
102-
// <li className="mr-3 nav__item" key={index}>
103-
// <Link href="/" className="inline-block px-4 py-2 text-lg font-normal text-gray-800 no-underline rounded-md dark:text-gray-200 hover:text-indigo-500 focus:text-indigo-500 focus:bg-indigo-100 focus:outline-none dark:focus:bg-gray-800">
104-
// {menu}
105-
// </Link>
106-
// </li>
107-
// ))}
108-
// </ul>
109-
// </div>

0 commit comments

Comments
 (0)