Skip to content
Draft
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .eslintcache

Large diffs are not rendered by default.

12 changes: 0 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,12 @@ export default function HomePage() {
</button>
{/* Heading + Flip Row */}
<div className="flex flex-row flex-wrap items-center justify-center gap-1 w-full">
<h1 className="text-2xl xs:text-4xl sm:text-6xl md:text-7xl font-sans text-white font-semibold whitespace-nowrap">
<h1 className="text-2xl xs:text-4xl sm:text-6xl md:text-7xl font-sans text-white font-bold whitespace-nowrap">
Want help in
</h1>
<ContainerTextFlip
words={["Projects", "assignments", "Termwork", "PPT"]}
className="text-lg xs:text-xl sm:text-2xl md:text-4xl ml-1 whitespace-nowrap"
className="text-2xl xs:text-4xl sm:text-6xl md:text-7xl ml-1 whitespace-nowrap"
/>
</div>
{/* Description Row */}
Expand Down Expand Up @@ -118,7 +118,6 @@ export default function HomePage() {
}
>
<Image
src="/homepage.png"
src="/hero-image.png"
alt="hero"
height={720}
Expand Down
2 changes: 1 addition & 1 deletion src/components/button.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
d 'use client';
'use client';
import React from "react";
import { useRouter } from "next/navigation";

Expand Down
44 changes: 0 additions & 44 deletions src/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -185,52 +185,8 @@ export default function Footer() {
Made with ❤️ for students worldwide
</div>
</div>

import React from 'react';
import { Twitter, Facebook, Linkedin } from 'lucide-react';

const Footer = () => {
return (
<footer className="relative z-10 bg-gray-800 text-white py-12">
<div className="container mx-auto px-4">
<div className="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 className="text-xl font-bold mb-4">asHelp</h3>
<p className="text-gray-400">
Get professional assignment writing services from verified experts.
</p>
</div>
<div>
<h3 className="text-xl font-bold mb-4">Services</h3>
<ul className="space-y-2">
<li><a href="#" className="text-gray-400 hover:text-white transition-colors">Assignment Writing</a></li>
<li><a href="#" className="text-gray-400 hover:text-white transition-colors">Term Papers</a></li>
<li><a href="#" className="text-gray-400 hover:text-white transition-colors">Presentations</a></li>
</ul>
</div>
<div>
<h3 className="text-xl font-bold mb-4">About</h3>
<ul className="space-y-2">
<li><a href="#" className="text-gray-400 hover:text-white transition-colors">About Us</a></li>
<li><a href="#" className="text-gray-400 hover:text-white transition-colors">Contact Us</a></li>
</ul>
</div>
<div>
<h3 className="text-xl font-bold mb-4">Follow Us</h3>
<div className="flex space-x-4">
<a href="#" className="text-gray-400 hover:text-white transition-colors"><Twitter /></a>
<a href="#" className="text-gray-400 hover:text-white transition-colors"><Facebook /></a>
<a href="#" className="text-gray-400 hover:text-white transition-colors"><Linkedin /></a>
</div>
</div>
</div>
<div className="mt-8 pt-8 border-t border-gray-700 text-center text-gray-500">
<p>&copy; {new Date().getFullYear()} asHelp. All rights reserved.</p>
</div>
</div>
</footer>
);
}
};

export default Footer;
2 changes: 1 addition & 1 deletion src/components/ui/container-text-flip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export function ContainerTextFlip({
animate={{ width }}
transition={{ duration: animationDuration / 2000 }}
className={cn(
"relative inline-block rounded-lg pt-2 pb-3 text-center text-4xl font-bold text-black md:text-4xl dark:text-white",
"relative inline-block rounded-lg py-1 sm:py-2 md:py-3 text-center font-bold text-black dark:text-white",
"[background:linear-gradient(to_bottom,#f3f4f6,#e5e7eb)]",
"shadow-[inset_0_-1px_#d1d5db,inset_0_0_0_1px_#d1d5db,_0_4px_8px_#d1d5db]",
"dark:[background:linear-gradient(to_bottom,#374151,#1f2937)]",
Expand Down