Skip to content

Commit 06ca1c4

Browse files
committed
🔍️Updated description for google search
1 parent d18e992 commit 06ca1c4

File tree

2 files changed

+23
-16
lines changed

2 files changed

+23
-16
lines changed

frontend/index.html

+7-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,14 @@
33

44
<head>
55
<meta charset="UTF-8" />
6-
<link rel="icon" type="image/png" href="logo_se.png" />
6+
<meta name="description"
7+
content="A Formal Method playground for limboole, z3, nuXmv, Alloy, and Spectra. This web application allows users to run formal methods tools in the browser." />
78
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
9+
<meta property="og:title" content="FM Playground">
10+
<meta property="og:description"
11+
content="A Formal Method playground for limboole, z3, nuXmv, Alloy, and Spectra. This web application allows users to run formal methods tools in the browser.">
12+
<meta property="og:image" content="https://play.formal-methods.net/logo_se.png">
13+
<link rel="icon" type="image/png" href="logo_se.png" />
814
<script src="z3-built.js"></script>
915
<script>
1016
globalThis.global = { initZ3: globalThis.initZ3 };

frontend/src/components/Utils/Footer.tsx

+16-15
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,22 @@ import '../../assets/style/Footer.css';
44
const Footer = () => {
55

66
return (
7-
<MDBFooter className='text-center text-lg-left mt-5'>
8-
<div className='text-center p-3 footer-text'>
9-
Privacy Policy:
10-
This website logs the specifications and options, which may be analyzed and made public for research purposes.
11-
Do not share confidential information.
12-
<br />
13-
Unless you login, it does not collect any personally identifiable information.
14-
Deleting your profile will remove all records of your profile from our servers.
15-
The specifications will be unlinked from your profile, but remain on the servers (see first bullet).
16-
<br />
17-
&copy; {new Date().getFullYear()} Copyright:{' '}
18-
Made with ♥ in Bauhaus-Universität Weimar
19-
</div>
20-
</MDBFooter>
21-
7+
<div aria-hidden='true'>
8+
<MDBFooter className='text-center text-lg-left mt-5'>
9+
<div className='text-center p-3 footer-text'>
10+
Privacy Policy:
11+
This website logs the specifications and options, which may be analyzed and made public for research purposes.
12+
Do not share confidential information.
13+
<br />
14+
Unless you login, it does not collect any personally identifiable information.
15+
Deleting your profile will remove all records of your profile from our servers.
16+
The specifications will be unlinked from your profile, but remain on the servers (see first bullet).
17+
<br />
18+
&copy; {new Date().getFullYear()} Copyright:{' '}
19+
Made with ♥ in Bauhaus-Universität Weimar
20+
</div>
21+
</MDBFooter>
22+
</div>
2223
);
2324
}
2425

0 commit comments

Comments
 (0)