Skip to content
Snippets Groups Projects
Select Git revision
  • issue/271.3-update-routes-new-backend protected
  • issue/447-search-results-screen
  • develop default protected
3 results

ContinueNavigation.js

Blame
  • ContinueNavigation.js 499 B
    import { Button } from "@mui/material"
    
    export const ContinueNavigation = () => {
        return (
            <div className="sm:hidden fixed bottom-25 left-0 w-full  bg-grey_button flex justify-center">
            <Button
              href="/busca?page=LearningObject"
              className="bg-turquoise mt-2 text-xl text-white-HC-dark-underline py-4 w-full text-center rounded-none hover:darkTurquoise-HC-gray font-bold normal-case"
            >
              Continuar navegando
            </Button>
          </div>
        )
    }