This commit is contained in:
enne2
2023-02-06 12:57:45 +01:00
parent 54c05f9ca8
commit a961bfd6f0
14 changed files with 1393 additions and 239 deletions
+53
View File
@@ -0,0 +1,53 @@
import Head from 'next/head';
import styles from '../styles/Home.module.css';
import Map from '../components/map';
import Services from '../components/services';
import { Container, Row, Col, Button, Card, Image } from 'react-bootstrap';
import SocialIcons from '../components/socialicons';
const logo = "logo.svg"
export default function Home() {
return (
<>
<Head>
<title>LOOP44 | nel centro di Matera uno spazio per coworking, collaborazione, cultura</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossOrigin="anonymous" />
<style>
{`
body {
background-size: cover;
background-image: url("background-image.png");
background-color:black;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
backdrop-filter: blur(10px);
}
svg {
height: 48px;
margin: 0 2em;
fill: darkorange;
}
`}
</style>
</Head>
<Container fluid style={{ height: "100vh" }}>
<Row className="justify-content-center align-items-center">
<Col xs={6}>
<Image src={logo} alt="LOOP44 Logo" fluid />
<h1 style={{ color: "#fff", textAlign: "center" }}>L O O P 4 4</h1>
</Col>
</Row>
<hr/> <Row>
<SocialIcons></SocialIcons>
</Row>
<hr/>
<Services></Services>
<hr/>
<Map></Map>
</Container>
</>
)
}
+61 -106
View File
@@ -1,115 +1,70 @@
import Head from 'next/head';
import styles from '../styles/Home.module.css';
import Services from '../components/services';
import { Container, Row, Col, Button, Card, Image } from 'react-bootstrap';
import SocialIcons from '../components/socialicons';
const logo = "logo.svg"
export default function Home() {
return (
<div className={styles.container}>
<Head>
<title>Create Next App</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<>
<Head>
<title>LOOP44 | nel centro di Matera uno spazio per coworking, collaborazione, cultura</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossOrigin="anonymous" />
<link href="https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed&display=swap" rel="stylesheet" />
<main>
<h1 className={styles.title}>
Welcome to <a href="https://nextjs.org">Next.js!</a>
</h1>
<style>
{`
body {
background-size: cover;
background-image: url("background-image.png");
background-color:black;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
backdrop-filter: blur(5px);
font-family: 'Barlow Semi Condensed', sans-serif;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
}
svg {
height: 48px;
margin: 0 2em;
fill: darkorange;
}
<p className={styles.description}>
Get started by editing <code>pages/index.js</code>
</p>
<div className={styles.grid}>
<a href="https://nextjs.org/docs" className={styles.card}>
<h3>Documentation &rarr;</h3>
<p>Find in-depth information about Next.js features and API.</p>
</a>
<a href="https://nextjs.org/learn" className={styles.card}>
<h3>Learn &rarr;</h3>
<p>Learn about Next.js in an interactive course with quizzes!</p>
</a>
<a
href="https://github.com/vercel/next.js/tree/master/examples"
className={styles.card}
>
<h3>Examples &rarr;</h3>
<p>Discover and deploy boilerplate example Next.js projects.</p>
</a>
<a
href="https://vercel.com/import?filter=next.js&utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
className={styles.card}
>
<h3>Deploy &rarr;</h3>
<p>
Instantly deploy your Next.js site to a public URL with Vercel.
</p>
</a>
</div>
</main>
<footer>
<a
href="https://vercel.com?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
target="_blank"
rel="noopener noreferrer"
>
Powered by{' '}
<img src="/vercel.svg" alt="Vercel" className={styles.logo} />
</a>
</footer>
<style jsx>{`
main {
padding: 5rem 0;
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
footer {
width: 100%;
height: 100px;
border-top: 1px solid #eaeaea;
display: flex;
justify-content: center;
align-items: center;
}
footer img {
margin-left: 0.5rem;
}
footer a {
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
color: inherit;
}
code {
background: #fafafa;
border-radius: 5px;
padding: 0.75rem;
font-size: 1.1rem;
font-family: Menlo, Monaco, Lucida Console, Liberation Mono,
DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace;
}
`}</style>
<style jsx global>{`
html,
body {
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue,
sans-serif;
}
* {
box-sizing: border-box;
}
`}</style>
</div>
`}
</style>
</Head>
<Container fluid style={{ height: "100vh" }}>
<Row className="justify-content-center align-items-center">
<Col xs={6}>
<Image src={logo} alt="LOOP44 Logo" style={{padding: "20px" }} fluid />
<Container style={{ padding: "20px" }}>
<h1 style={{ textAlign: "center", fontSize: 55, color: "white"}}>L O O P 4 4</h1>
</Container>
</Col>
</Row> <Row>
<SocialIcons></SocialIcons>
</Row>
<br/>
<Services></Services>
<Container style={{padding:25}}>
<iframe
width="100%"
height="350"
style={{border:"0", marginTop:20}}
loading="lazy"
allowfullscreen
referrerpolicy="no-referrer-when-downgrade"
src="https://www.google.com/maps/embed/v1/place?key=AIzaSyApd2QKzSsWnlD7q99lNngynLN2zYreGN8
&q=Vico xx settembre 44,matera">
</iframe>
</Container>
</Container>
</>
)
}