16 lines
606 B
Python
16 lines
606 B
Python
def get_domain_content():
|
|
"""
|
|
Returns content for the Domain Analysis page.
|
|
"""
|
|
return {
|
|
"title": "Domain Analysis",
|
|
"description": "Explore tools and resources for analyzing domains.",
|
|
"resources": [
|
|
{"name": "UrlScan", "url": "https://urlscan.io/"},
|
|
{"name": "Wannabrowser", "url": "https://www.wannabrowser.net/"},
|
|
{"name": "Browserling", "url": "https://www.browserling.com/"},
|
|
{"name": "Kasm", "url": "https://www.kasmweb.com/"},
|
|
{"name": "URL2PNG", "url": "https://www.url2png.com/"}
|
|
]
|
|
}
|