[Tex/LaTex] How to remove the section from the last slide

beamer

I want to put some slides at the end of my presentation in the case someone will ask something to them. Therefore I want to delete the introduction in the example below from the navigation bar. How can I get that to work?

enter image description here

Code

\documentclass[xcolor=dvipsnames]{beamer}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usetheme{Antibes}
\usecolortheme[named=Maroon]{structure} 
\setbeamercovered{transparent}

\title{Test}
\author{Alex XYZ}
\institute{University XYZ}
\date{20.01.16}

\begin{document}
\beamertemplatenavigationsymbolsempty

\section{Introduction}
\begin{frame}{Introduction}
\end{frame}

\begin{frame}{System Design and Database}
Content of database.
\end{frame}

\end{document}

Best Answer

The best solution is to start a new part with \part{}.

\part{}
\begin{frame}{System Design and Database}
Content of database.
\end{frame}

enter image description here

Related Question