├── .eslintrc.json
├── public
├── 01.png
├── 02.png
├── 03.png
├── Icon.png
├── Tick.png
├── mail.png
├── tara.png
├── Icon(1).png
├── Icon(2).png
├── Icon(3).png
├── Icon(4).png
├── Icon(5).png
├── about.png
├── choose.png
├── logo 1.png
├── three.png
├── chooseus.png
├── image(1).png
├── image(2).png
├── image(3).png
├── maincard.png
├── maincard2.png
├── Hero Image.png
├── BizLaunchBase.png
├── Hero Image2024.png
├── Background shape.png
├── vercel.svg
└── next.svg
├── postcss.config.js
├── lib
└── utils.ts
├── next.config.js
├── app
├── provider
│ ├── providers.tsx
│ ├── test.tsx
│ └── layout.tsx
├── layout.tsx
├── page.tsx
└── globals.css
├── components.json
├── .gitignore
├── tailwind.config.ts
├── tsconfig.json
├── package.json
├── README.md
├── components
├── SocialProof.tsx
├── CardMain.tsx
├── ui
│ └── button.tsx
├── Services.tsx
├── HomeSection.tsx
├── About.tsx
├── Explore.tsx
├── Choose.tsx
├── Navbar.tsx
├── Testimonials.tsx
└── Footer.tsx
└── tailwind.config.js
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/public/01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/01.png
--------------------------------------------------------------------------------
/public/02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/02.png
--------------------------------------------------------------------------------
/public/03.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/03.png
--------------------------------------------------------------------------------
/public/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/Icon.png
--------------------------------------------------------------------------------
/public/Tick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/Tick.png
--------------------------------------------------------------------------------
/public/mail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/mail.png
--------------------------------------------------------------------------------
/public/tara.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/tara.png
--------------------------------------------------------------------------------
/public/Icon(1).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/Icon(1).png
--------------------------------------------------------------------------------
/public/Icon(2).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/Icon(2).png
--------------------------------------------------------------------------------
/public/Icon(3).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/Icon(3).png
--------------------------------------------------------------------------------
/public/Icon(4).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/Icon(4).png
--------------------------------------------------------------------------------
/public/Icon(5).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/Icon(5).png
--------------------------------------------------------------------------------
/public/about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/about.png
--------------------------------------------------------------------------------
/public/choose.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/choose.png
--------------------------------------------------------------------------------
/public/logo 1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/logo 1.png
--------------------------------------------------------------------------------
/public/three.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/three.png
--------------------------------------------------------------------------------
/public/chooseus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/chooseus.png
--------------------------------------------------------------------------------
/public/image(1).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/image(1).png
--------------------------------------------------------------------------------
/public/image(2).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/image(2).png
--------------------------------------------------------------------------------
/public/image(3).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/image(3).png
--------------------------------------------------------------------------------
/public/maincard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/maincard.png
--------------------------------------------------------------------------------
/public/maincard2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/maincard2.png
--------------------------------------------------------------------------------
/public/Hero Image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/Hero Image.png
--------------------------------------------------------------------------------
/public/BizLaunchBase.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/BizLaunchBase.png
--------------------------------------------------------------------------------
/public/Hero Image2024.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/Hero Image2024.png
--------------------------------------------------------------------------------
/public/Background shape.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Iqtidartara/Biz-Launchbase/HEAD/public/Background shape.png
--------------------------------------------------------------------------------
/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/lib/utils.ts:
--------------------------------------------------------------------------------
1 | import { type ClassValue, clsx } from "clsx"
2 | import { twMerge } from "tailwind-merge"
3 |
4 | export function cn(...inputs: ClassValue[]) {
5 | return twMerge(clsx(inputs))
6 | }
7 |
--------------------------------------------------------------------------------
/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | // next.config.js
3 |
4 | const nextConfig = {
5 | images: {
6 | domains: ["cdn.builder.io"],
7 | },
8 | };
9 |
10 | module.exports = nextConfig;
11 |
12 |
--------------------------------------------------------------------------------
/app/provider/providers.tsx:
--------------------------------------------------------------------------------
1 | 'use client';
2 |
3 | import { ParallaxProvider } from 'react-scroll-parallax';
4 |
5 | export function Providers({ children }: { children: React.ReactNode }) {
6 | return
200+
10 |Clients
11 |1300+
14 |Companies Formed
15 |150+
18 |Countries Served
19 |4+
22 |Years of Experience
23 |15 | Seize the Future: Supercharge Your Business Journey by Creating Your 16 | BizLaunchBase Account Today! Join a Thriving Community and Elevate 17 | Your Success to New Heights. 18 |
19 | 20 |48 | {service.description} 49 |
50 |32 | Boost Your Business Expansion with Our Registration Process 33 | Leading Payment Platforms in Just a Week 34 |
35 |
46 | Join with{" "}
47 | 1200+ Startups
48 | and get your
business started today
49 |
30 | At BizLaunchBase, we break down barriers for you. Our streamlined 31 | process, guided document uploads, and expert team ensure quick 32 | registration for Stripe, PayPal, Wise, and more in just 7 days. Make 33 | your global market entry a reality! 34 |
35 |77 | {card.description} 78 |
79 |21 | In the entrepreneurial world, your choice of a partner is crucial. 22 | BizLaunchBase is your reliable companion, ensuring transparency, 23 | informed decisions, and effortless processes. We pave the way for 24 | your borderless business success. 25 |
26 |19 | In just 7 days, BizLaunchBase made my business global-ready. 20 | User-friendly and hassle-free, they turned promises into 21 | reality. They're not just a service; they're 22 | partners in making global dreams real. 23 |
24 |31 | Business Strategist 32 |
33 |45 | BizLaunchBase is the best choice for global ambitions. Their 46 | transparency and commitment ensured an effortless journey. 47 | They're not just service providers; they're reliable 48 | companions dedicated to success. 49 |
50 |57 | Digital Entrepreneur 58 |
59 |78 | Fans can't stop talking! Don't just take our word, let their 79 | excitement convince you. Join the chorus of satisfied users today! 80 |
81 |90 | BizLaunchBase is my partner in this exhilarating global journey. 91 | They break geographical shackles and unveil boundless potential. 92 | If you're ready for global opportunities, BizLaunchBase is the 93 | go-to partner to make your aspirations a reality! 94 |
95 |102 | Business Owner 103 |
104 |