You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
453 B
14 lines
453 B
import Head from 'next/head'
|
|
|
|
export default function Meta() {
|
|
return (
|
|
<Head>
|
|
<title>SMS Gateway</title>
|
|
<meta name='viewport' content='initial-scale=1.0, width=device-width' />
|
|
<meta name='description' content='Android SMS Gateway' />
|
|
<meta name='keywords' content='android, sms, gateway, sms-gateway' />
|
|
<meta name='author' content='Israel Abebe' />
|
|
<link rel='icon' href='/favicon.ico' />
|
|
</Head>
|
|
)
|
|
}
|