This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
import SwiftUI | |
struct ContentView: View { | |
@State private var model = Model() | |
var body: some View { | |
ZStack { | |
CustomCollectionView(lastSelectedIndex: $model.index) | |
IndexPreviewer(model: model) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="enter-page-box" style="background: rgba(250, 237, 216, 1); font-family: 'Alegreya Sans';text-align: center; cursor: pointer; width: 45em; padding: 1em; border: 1.5em solid rgba(28, 95, 131, 1)"> | |
<header style="font-family: 'Alegreya SC'; padding: 1em; color: #25639E"> | |
<h2 style="font-size: 1.6em; font-weight: 400">Welcome to the new website of the</h2> | |
<h1 style="font-size: 1.9em; font-weight: 400">Leuven Catholic English Speaking Community!</h1> | |
</header> | |
<section style="font-size: 1.3em"> | |
<p style="margin: 1em 0">Our website is <span style="font-family: Alegreya Sans SC; font-style: italic;">brand new!</span> We’re bringing you a new look, a new domain, and a new adventure.</p> | |
<p style="margin: 1em 0">You may encounter a few bumps during your visit. If something doesn’t display correctly, look right, etc., please send a message to the webmaster, and we’ll get it fixed.</p> | |
<p style="margin: 1em 0">Thanks for your feedback, support, and patience as we continue to improve your online ex |