chore: Cleanup unused vars, exports, types * Cleanup some unused exports * Remove more * Readd CampaignPageIncludedHotelsRef * Add alias comment to procedure exports * Remove unused exports Approved-by: Linus Flood
22 lines
400 B
TypeScript
22 lines
400 B
TypeScript
import { getFooter } from "@/lib/trpc/memoizedRequests"
|
|
|
|
import FooterDetails from "./Details"
|
|
import FooterNavigation from "./Navigation"
|
|
|
|
import styles from "./footer.module.css"
|
|
|
|
function preload() {
|
|
void getFooter()
|
|
}
|
|
|
|
export default async function Footer() {
|
|
preload()
|
|
|
|
return (
|
|
<footer className={styles.footer}>
|
|
<FooterNavigation />
|
|
<FooterDetails />
|
|
</footer>
|
|
)
|
|
}
|