Skip to content

Commit

Permalink
robots.txt rickroll updated
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharsinghbisht committed Nov 2, 2024
1 parent 046e6fa commit 3208f38
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/app/robots.txt/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"use client";
import React, { useEffect } from "react";

const page = () => {
useEffect(() => {
location.href = "https://youtu.be/dQw4w9WgXcQ";
}, []);
return <div></div>;
};

export default page;

0 comments on commit 3208f38

Please sign in to comment.