Skip to content

Commit

Permalink
📦 NEW: Sponsor Page
Browse files Browse the repository at this point in the history
  • Loading branch information
GuidoS committed Jun 4, 2024
1 parent 4dc0da2 commit d142ca2
Show file tree
Hide file tree
Showing 5 changed files with 70 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3 changes: 3 additions & 0 deletions src/components/navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ const Navbar = ({ siteTitle }) => {
<li className="nav-item">
<ExactNavLink to="/about">About</ExactNavLink>
</li>
<li>
<ExactNavLink to="/sponsor">Sponsor</ExactNavLink>
</li>
</ul>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/about.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from "react";
import { Link } from "gatsby";
// import { Link } from "gatsby";
import { StaticImage } from "gatsby-plugin-image";

import Layout from "../components/layout";
Expand Down
65 changes: 65 additions & 0 deletions src/pages/sponsor.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
import * as React from "react";
// import { Link } from "gatsby";
// import { StaticImage } from "gatsby-plugin-image";

import Layout from "../components/layout";
import { Seo } from "../components/seo";

const SponsorPage = () => (
<Layout>
<div className="container">
<div className="container">
<div className="row my-3">
<h1 className="text-center text-uppercase text-secondary fw-bold my-4">
SPONSORS OF FOSS4G NORTH AMERICA HAVE A UNIQUE OPPORTUNITY TO BE AN
INTEGRAL PART OF THE ENTIRE EVENT
</h1>
<div className="row my2">
<div className="row my2">
<div className="col-md-12 col-lg-4 my-2">
<p>
The Global FOSS4G movement delivers camaraderie, and
networking opportunities that lead to synergies in the
community as well as opportunities to give and receive help on
specific technical issues or to generate business
opportunities.
</p>
<p>
The 2024 conference program will include hands-on workshops,
B2B opportunities and technical sessions on current topics
relevant to the FOSS4G community including web mapping, AI,
3D, AR/VR, IoT, Visualization, Analysis, Spatial Databases,
geoprocessing, Big Data and more.
</p>
</div>
<div className="col-md-12 col-lg-4 my-2">
<p>
Here is a partial list of well-known organizations who have
attended FOSS4G NA: DigitalGlobe, Boeing, Esri, Dell, Google,
Ericsson, Mapbox, Boundless, CARTO, IBM, Lockheed Martin, NGA,
NASA, Red Cross, NOAA, U.S. Army Corps of Engineers, U.S.
Department of Defense, U.S. Geological Survey, Azavea, Oak
Ridge National, Laboratory, Oracle, Red Hat, Planet Labs,
Cisco, Thales, CCRI, Analytical Graphics, Amazon, Rackspace,
Hortonworks, Saab, Github, Apple, Factual, World Bank, Tesla,
Trimble and Twitter.
</p>
<a
href={"foss4gna-2024-exhibitor-and-sponsor-brochure.pdf"}
className="btn btn-primary my-2"
>
Download The Prospectus
</a>
</div>
<div className="col-md-12 col-lg-4 my-2"></div>
</div>
</div>
</div>
</div>
</div>
</Layout>
);

export default SponsorPage;

export const Head = () => <Seo title="Sponsor FOSS4GNA St. Louis 2024" />;
Binary file not shown.

0 comments on commit d142ca2

Please sign in to comment.