next serve diffefrent bapge if mobile code example
Example: redirect page on mobile screen size javascript
function redirect() {
if (screen.width <= 950) {
window.location = "https://www.google.com/";
}
function redirect() {
if (screen.width <= 950) {
window.location = "https://www.google.com/";
}