UNPKG

@gv-sh/specgen-user

Version:

[![Version](https://img.shields.io/badge/version-0.14.1-blue.svg)](https://github.com/gv-sh/specgen-user)

26 lines (24 loc) 862 B
// src/components/layout/Footer.jsx import React from 'react'; const Footer = () => { return ( <footer className="fixed bottom-0 left-0 right-0 border-t py-4 text-center text-sm text-muted-foreground bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60 z-40"> <div className="container"> <p> ©️ Conceptualized by <a href="https://www.1377.co.in/" target="_blank" rel="noopener noreferrer" className="text-primary hover:underline" >13°77°</a> and developed in collaboration with <a href="https://mathscapes.xyz" target="_blank" rel="noopener noreferrer" className="text-primary hover:underline" >Mathscapes</a>. </p> </div> </footer> ); }; export default Footer;