Skip to content

Commit

Permalink
improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
parteekcoder committed Jan 19, 2024
1 parent 131254d commit db619e7
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 14 deletions.
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const nextConfig = {
swcMinify: true,
serverRuntimeConfig: {
// Will only be available on the server side
domain: 'https://hackmol.tech',
domain: 'https://hackmol.com',
},
}

Expand Down
2 changes: 0 additions & 2 deletions src/pages/_app.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import "../styles/globals.css";
import "../styles/hero.css";
import "swiper/css";
import Head from "next/head";

Expand Down
2 changes: 0 additions & 2 deletions src/pages/_document.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// _dovument.js nextjs
import { Html, Head, Main, NextScript } from "next/document";
import Script from "next/script";
import { useLayoutEffect } from "react";

export default function Document() {
return (
Expand Down Expand Up @@ -40,7 +39,6 @@ export default function Document() {
<meta name="twitter:domain" content="https://hackmol4.tech" />
<meta name="twitter:app:name:iphone" content="HackMOL 4.0" />
<meta name="twitter:app:name:ipad" content="HackMOL 4.0" />


</Head>

Expand Down
11 changes: 2 additions & 9 deletions src/pages/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import "../styles/globals.css";
import "../styles/hero.css";
import Marquee from "../components/Hero/marquee";
import Testimonies from "../components/Testimonies";
import Timeline from "../components/Timeline";
Expand All @@ -9,23 +11,14 @@ import Track from "../components/track";
import Footer from "../components/Footer";
import HeroSection from "../components/Hero/HeroSection";
import JudgesSection from "../components/Judges/JudgesSection";
import { useEffect, useLayoutEffect } from "react";
import Header from "../components/Hero/Header";
import NavBar from "../components/Hero/NavBar";
import Script from "next/script";

export default function Home() {
return (
<div>
<Header />
<NavBar />
{/* <Banner2 /> */}
{/* <div className="six"></div>
<div className="five"></div>
<div className="seven">
<div className="hidden sm:flex items-center justify-center md:justify-start"></div>
</div> */}
{/* <NavBar /> */}
<HeroSection />
<Marquee />
<About />
Expand Down

0 comments on commit db619e7

Please sign in to comment.