"use client"; ///////////////////////////////////////////// //* IMPORTS ///////////////////////////////////////////// import React from "react"; import TextShuffler from "../../../components/actions/TextShuffler"; ///////////////////////////////////////////// //* Main Function ///////////////////////////////////////////// /** * Blog page index * ============================================================================== */ export default function Main({ post }: { post: any }) { //* Main Function Return return (

); }