Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed spacing #107

Merged
merged 1 commit into from
Oct 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 10 additions & 20 deletions app/(default)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,32 @@ export const metadata = {
description: "Point Blank is a student-run tech community at Dayananda Sagar College of Engineering, Bangalore. We are a group of tech enthusiasts who love to learn and grow together.",
};

// Define the viewport settings separately
export const viewport = {
initialScale: 1,
width: 'device-width',
};

import Hero from "@/components/hero";
import WhatWeDo from "@/components/whatwedo";
import Domains from "@/components/domains";
import "../css/additional-styles/landing.css";
import Activities from "@/components/activities";
import Image from "next/image";
import Link from "next/link";
import SparklesText from "@/components/magicui/sparkles-text";
import EventComponent from "@/components/eventcards";
import Leads from "@/components/leads";
import Achievements from '@/components/achievements';
import Founder from "@/components/founder";
import Share from "@/components/share";


export default function Home() {
return (
<>
<Hero />
<WhatWeDo />
<Domains />
<div className="flex flex-col justify-center items-center py-10 px-5 mb-20">
<div className="flex flex-col justify-center items-center py-10 px-5">
<SparklesText text="Upcoming Events" className="text-4xl font-bold text-center text-gray-200 mb-4" />
{/* <Image
src={"/images/announce.png"}
alt="sih"
height={400}
width={1100}
className="rounded-3xl mt-20"
/> */}
<Image
src={"/images/recruitment.png"}
alt="recruitment-poster"
Expand All @@ -46,18 +42,12 @@ export default function Home() {
Register Now
</button>
</a>
{/* Add a download button */}
{/* <a href="/Shortlisted.pdf" download>
<button className="btn-sm px-5 py-3 text-xl font-bold text-white bg-green-600 mx-3 rounded-xl mt-10">
Download Shortlisted Problem Statements
</button>
</a> */}
</div>
{/* <Announce /> */}
</div>
<Activities />
<div className="-mt-20"> {/* Adjusted margin for Activities section */}
<Activities />
</div>
<Founder />
{/* <Leads /> */}
<Achievements />
<EventComponent />
<Share />
Expand Down
Loading