Skip to content

Commit

Permalink
folder structure refactored
Browse files Browse the repository at this point in the history
  • Loading branch information
Rudra-Sankha-Sinhamahapatra committed Nov 3, 2024
1 parent e8f5300 commit ee5d1a7
Show file tree
Hide file tree
Showing 16 changed files with 67 additions and 64 deletions.
2 changes: 1 addition & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Metadata } from "next";
import { Space_Grotesk } from 'next/font/google';
import "./globals.css";
import Navbar from "@/components/Navbar";
import Navbar from "@/components/main/navbar/Navbar";

export const metadata: Metadata = {
title: "Create Next App",
Expand Down
12 changes: 6 additions & 6 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@

import Accordian from "@/components/Accordian";
import { Bottom } from "@/components/Bottom";
import ContactPage from "@/components/Contact";
import HeroSection from "@/components/main/Hero";
import Accordian from "@/components/main/accordian/Accordian";
import { Bottom } from "@/components/main/bottom/Bottom";
import ContactPage from "@/components/main/contact/Contact";
import HeroSection from "@/components/main/hero/Hero";
import PricingSection from "@/components/Pricing/PricingSection";

import Services from "@/components/Services";
import TeamPage from "@/components/Team";
import Services from "@/components/main/services/Services";
import TeamPage from "@/components/main/team/Team";

export default function Home() {
return (
Expand Down
2 changes: 1 addition & 1 deletion components/Pricing/GrowthCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const GrowthCard = () => {
</div>
</div>

<Link href="https://cal.com/acex-labs">
<Link href="https://cal.com/acex-labs" target="_blank">
<div className="space-y-4">
<Button className="w-full bg-gray-800 text-white hover:bg-gray-700 rounded-xl py-6 text-lg transition-all duration-300 shadow-lg hover:shadow-xl">
Schedule a Call →
Expand Down
2 changes: 1 addition & 1 deletion components/Pricing/MvpCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const MvpCard = () => {
</div>
</div>

<Link href="https://cal.com/acex-labs">
<Link href="https://cal.com/acex-labs" target="_blank">
<div className="space-y-4">
<Button className="w-full bg-gray-800 text-white hover:bg-gray-700 rounded-xl py-6 text-lg transition-all duration-300 shadow-lg hover:shadow-xl">
Get Started Now →
Expand Down
89 changes: 46 additions & 43 deletions components/Pricing/StartupCard.tsx
Original file line number Diff line number Diff line change
@@ -1,52 +1,55 @@
import { Check} from "lucide-react"
import Link from "next/link"
import { Button } from "../ui/button"
import { Card } from "../ui/card"
import { Check } from "lucide-react";
import Link from "next/link";
import { Button } from "../ui/button";
import { Card } from "../ui/card";

export const StartupCard = () => {
return(
<Card className="relative bg-black rounded-3xl p-8 shadow-2xl flex flex-col justify-between transition-all duration-300 hover:shadow-[0_0_30px_rgba(255,255,255,0.2)] hover:scale-105 border border-gray-700">
<div>
<div className="inline-block bg-white text-black px-4 py-1.5 rounded-full text-sm mb-6 shadow-lg">
Quarterly Plan
</div>
<h2 className="text-2xl font-bold mb-2 text-white">Startup Booster Package</h2>
<div className="mb-4">
<span className="text-4xl font-bold text-white">$4997/quarter</span>
</div>
<p className="text-gray-400 mb-8">Billed quarterly, 3-month minimum</p>

<div className="mb-8">
<h3 className="text-xl font-semibold mb-4 text-white">What&apos;s Included:</h3>
<ul className="space-y-4">
{[
"120 hours of development time per quarter",
"Bi-weekly strategy calls",
"Priority bug fixes and feature updates",
"Quarterly performance review",
"Dedicated project manager",
"Scalability planning and implementation",
"24/7 emergency support"
].map((feature, index) => (
<li key={index} className="flex items-center gap-3">
<div className="bg-white rounded-full p-1 shadow-md">
<Check className="w-4 h-4 text-black" />
</div>
<span className="text-gray-300">{feature}</span>
</li>
))}
</ul>
</div>
return (
<Card className="relative bg-black rounded-3xl p-8 shadow-2xl flex flex-col justify-between transition-all duration-300 hover:shadow-[0_0_30px_rgba(255,255,255,0.2)] hover:scale-105 border border-gray-700">
<div>
<div className="inline-block bg-white text-black px-4 py-1.5 rounded-full text-sm mb-6 shadow-lg">
Quarterly Plan
</div>
<h2 className="text-2xl font-bold mb-2 text-white">
Startup Booster Package
</h2>
<div className="mb-4">
<span className="text-4xl font-bold text-white">$4997/quarter</span>
</div>
<p className="text-gray-400 mb-8">Billed quarterly, 3-month minimum</p>

<div className="mb-8">
<h3 className="text-xl font-semibold mb-4 text-white">
What&apos;s Included:
</h3>
<ul className="space-y-4">
{[
"120 hours of development time per quarter",
"Bi-weekly strategy calls",
"Priority bug fixes and feature updates",
"Quarterly performance review",
"Dedicated project manager",
"Scalability planning and implementation",
"24/7 emergency support",
].map((feature, index) => (
<li key={index} className="flex items-center gap-3">
<div className="bg-white rounded-full p-1 shadow-md">
<Check className="w-4 h-4 text-black" />
</div>
<span className="text-gray-300">{feature}</span>
</li>
))}
</ul>
</div>
</div>

<Link href="https://cal.com/acex-labs">
<Link href="https://cal.com/acex-labs" target="_blank">
<div className="space-y-4">
<Button className="w-full bg-white text-black hover:bg-gray-200 rounded-xl py-6 text-lg transition-all duration-300 shadow-lg hover:shadow-xl">
Start Your Journey →
</Button>
</div>
</Link>
</Card>

)
}
</Link>
</Card>
);
};
2 changes: 1 addition & 1 deletion components/Team/Team.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"use client";
import Container from "../Container";
import Container from "../shared/Container";
import {
TopLeftShiningLight,
TopRightShiningLight,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

import { Process } from '@/data/process'
import Container from './Container'
import Container from '../../shared/Container'
import AccordionItem from './AccordianItem'
import Topic from './Topic'
import Topic from '../../shared/Topic'

export default function Accordian() {
return (
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable @next/next/no-img-element */
import Link from "next/link"
import Container from "./Container"
import Container from "../../shared/Container"

export const Bottom = () => {
return (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"use client"

import { useState, FormEvent } from 'react';
import Container from './Container';
import Topic from './Topic';
import Container from '../../shared/Container';
import Topic from '../../shared/Topic';
import Image from 'next/image';


Expand Down
2 changes: 1 addition & 1 deletion components/main/Hero.tsx → components/main/hero/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
TopLeftShiningLight,
TopRightShiningLight,
} from "@/components/farmui/ShinyLights";
import Container from "../Container";
import Container from "../../shared/Container";
import Link from "next/link";

export default function FUIDarkHeroSectionWithScrolls() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use client";
import { useState } from "react";
import Link from "next/link";
import Container from "./Container";
import Container from "../../shared/Container";
import { menuItems } from "@/data/menuitems";

const Navigation = () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable @next/next/no-img-element */
import { servicesData } from "@/data/service";
import Container from "./Container";
import Topic from "./Topic";
import Container from "../../shared/Container";
import Topic from "../../shared/Topic";

function Services() {
return (
Expand Down
4 changes: 2 additions & 2 deletions components/Team.tsx → components/main/team/Team.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* eslint-disable @next/next/no-img-element */
"use client"
import { teamData } from "@/data/process";
import Container from "./Container";
import Topic from "./Topic";
import Container from "../../shared/Container";
import Topic from "../../shared/Topic";
import { useRouter } from "next/navigation";
import { TeamMember } from "@/data/TeamMember";

Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit ee5d1a7

Please sign in to comment.